php 字符变换
程序员文章站
2024-02-07 21:43:28
...
php 字符转换
将单引号(') 前加上\ ,避免数据库插入错误.?
相关函数 : addcslashes($str,'\'');
将 &,这三个字符转换成html实体(如不改变,在xml中将报错)
相关函数: htmlentities($str,ENT_NOQUOTES);? //ENT_NOQUOTES的意思是不转换 双引号(") 和 单引号(')
大部分乱码都是因为编码不一致造成的,可使用相关函数重新进行编码
相关函数: icovn("utf-8","ascii//TRANSLIT//IGNORE",$str);? // TRANSLIT 和 IGNORE 是 参数,分别是遇到特殊字符时停止编码,返回已编码的字符串 和 忽略不能编码的字符.
插入数据
读取数据
乱码
echo '/************addcslashes************/';$str = 'abcdfegadsf\'asdfasdfa';echo addcslashes($str,'\'');echo '/************htmlentities*************/';$str = 'abcdfe & s ha \'asdfasdfa';echo htmlentities($str,ENT_NOQUOTES);echo '/************iconv*************/';$str = ' ‘ ’ ???“?”??¨???????? ? ?? ? ? ? ? ? @ @Wei?, Goldmann, G?bel, Weiss, G?the, Goethe und G?tz ? aa';//change encoding from utf-8 to asciiecho iconv('utf-8','ascii//TRANSLIT//IGNORE',$str);?
?
相关文章
相关视频