What are the specific uses of the common functions included in the php-system? Can any expert explain them to me?

WBOY
Release: 2023-03-01 13:36:02
Original
1171 people have browsed it

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>
Copy after login

?> ;

Reply content:

String replacement, filter html code

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template