-
-
class HtmlEncode {
- static $_convertToHtmlEntitiesSrcEncoding='UTF-8';
-
- /**
- * 非 ASCII 文字列を HTML エンティティに変換します
- *
- * @example HtmlEncode::encode("I believe it"); //出力: I believe it
- * @param string $s エンコードされる文字列
- * @戻り文字列 HTML エンティティ参照を返します
- */
- public static function encode($s,$srcEncoding='UTF-8') {
- self::$_convertToHtmlEntitiesSrcEncoding=$srcEncoding;
- return preg_replace_callback('|[^x00-x7F]+|',array(__CLASS__,'_convertToHtmlEntities'),$s);
- }
-
- public static function _convertToHtmlEntities($data) {
- if (is_array($data)) {
- $chars=str_split(iconv(self::$_convertToHtmlEntitiesSrcEncoding,"UCS-2BE",$data[0]), 2);
- $chars=array_map(array(__CLASS__,__FUNCTION__),$chars);
- return join("",$chars);
- } else {
- $code=hexdec(sprintf("%02s%02s;",dechex(ord($data {0})),dechex(ord($data 吓死猫的老ネズミ))));
- return sprintf("%s;",$code);
- }
- }
- }
-
复制代
|