Heim > Artikel > Backend-Entwicklung > Was sind die spezifischen Verwendungszwecke der im PHP-System enthaltenen allgemeinen Funktionen? Kann mir ein Experte diese erklären?
php
function unhtml($content){
$content=str_replace("&","&",$content);
$content= str_replace("<","<",$content);
$content=str_replace(">",">",$content);
$content=str_replace(" "," ",$content);
$content=str_replace(chr(13),"
",$content);
$content=str_replace("","\",$content);
$content=str_replace(chr(34),""",$content);
<code> return $content; }</code>
?>
String-Ersetzung, HTML-Code filtern