发布网友 发布时间:2022-04-28 01:40
共7个回答
懂视网 时间:2022-04-28 06:01
php将特殊字符进行转换的方法:1、通过addslashes函数使用反斜线引用字符串;2、使用htmlentities函数转化为html实体;3、通过htmlspecialchars函数对特定的字符转化为html实体。
推荐:《PHP视频教程》
1、addslashes() 使用反斜线引用字符串
和
stripslashes()反引用一个引用字符串
2、htmlentities():转化为html实体
和html_entity_decode():把html实体转化为html标签
3、htmlspecialchars():对特定的字符转化为html实体
和htmlspecialchars_decode():反之
热心网友 时间:2022-04-28 03:09
elceo0723 :你好!
直接输出就可以了。\是转义符,用来告诉php,说明"是符号双引号本身,让PHP语言不要解释成别的。
你用echo显示一下,就变成你需要的东东了,你可以测试一下的。
热心网友 时间:2022-04-28 04:27
$str="<img height=\"195\" width=\"960\" alt=\"\" src=\"/upfiles/user/110112053015578127tgxvzeaizjxo.jpg\" />";
直接输出
echo $str;
那就你把\替换掉啊
$str="<img height=\"195\" width=\"960\" alt=\"\" src=\"/upfiles/user/110112053015578127tgxvzeaizjxo.jpg\" />";
$str=str_replace("\","",$str);
echo $str;
热心网友 时间:2022-04-28 06:02
这是转义字符。。。
热心网友 时间:2022-04-28 07:53
$c_description="<img height=\"195\" width=\"960\" alt=\"\" src=\"/upfiles/user/110112053015578127tgxvzeaizjxo.jpg\" />"
$description = str_replace("\", "", $c_description);
热心网友 时间:2022-04-28 10:01
用str_replace把"\"替换掉就可以了
热心网友 时间:2022-04-28 12:26
$c_description="<img height=\"195\" width=\"960\" alt=\"\" src=\"/upfiles/user/110112053015578127tgxvzeaizjxo.jpg\" />"
$description = str_replace("\", "", $c_description);
用str_replace把"\"替换掉就可以了