欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php-系统包含的常用函数具体有什么用哪位大神能帮帮忙解释一下吗?

程序员文章站 2022-05-10 23:11:44
...
php

function unhtml($content){
$content=str_replace("&","&",$content);
$content=str_replace(" $content=str_replace(">",">",$content);
$content=str_replace(" "," ",$content);
$content=str_replace(chr(13),"
",$content);
$content=str_replace("\","\\",$content);
$content=str_replace(chr(34),""",$content);

         return $content;        }

?>

回复内容:

字符串替换,过滤html代码

相关标签: php