util.php
上传用户:wlfwy2004
上传日期:2016-12-12
资源大小:33978k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <?php 
  2. /*
  3.  * FCKeditor - The text editor for internet
  4.  * Copyright (C) 2003-2005 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.  * File Name: util.php
  13.  *  This is the File Manager Connector for ASP.
  14.  * 
  15.  * File Authors:
  16.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  17.  */
  18. function RemoveFromStart( $sourceString, $charToRemove )
  19. {
  20. $sPattern = '|^' . $charToRemove . '+|' ;
  21. return preg_replace( $sPattern, '', $sourceString ) ;
  22. }
  23. function RemoveFromEnd( $sourceString, $charToRemove )
  24. {
  25. $sPattern = '|' . $charToRemove . '+$|' ;
  26. return preg_replace( $sPattern, '', $sourceString ) ;
  27. }
  28. function ConvertToXmlAttribute( $value )
  29. {
  30. return utf8_encode( htmlspecialchars( $value ) ) ;
  31. }
  32. ?>