util.php
上传用户:li2971742
上传日期:2021-11-18
资源大小:39096k
文件大小:1k
源码类别:

OA系统

开发平台:

C#

  1. <?php 
  2. /*
  3.  * FCKeditor - The text editor for internet
  4.  * Copyright (C) 2003-2006 Frederico Caldeira Knabben
  5.  * 
  6.  * Licensed under the terms of the GNU Lesser General Public License:
  7.  *  http://www.opensource.org/licenses/lgpl-license.php
  8.  * 
  9.  * For further information visit:
  10.  *  http://www.fckeditor.net/
  11.  * 
  12.  * "Support Open Source software. What about a donation today?"
  13.  * 
  14.  * File Name: util.php
  15.  *  This is the File Manager Connector for ASP.
  16.  * 
  17.  * File Authors:
  18.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  19.  */
  20. function RemoveFromStart( $sourceString, $charToRemove )
  21. {
  22. $sPattern = '|^' . $charToRemove . '+|' ;
  23. return preg_replace( $sPattern, '', $sourceString ) ;
  24. }
  25. function RemoveFromEnd( $sourceString, $charToRemove )
  26. {
  27. $sPattern = '|' . $charToRemove . '+$|' ;
  28. return preg_replace( $sPattern, '', $sourceString ) ;
  29. }
  30. function ConvertToXmlAttribute( $value )
  31. {
  32. return utf8_encode( htmlspecialchars( $value ) ) ;
  33. }
  34. ?>