php 符转换为 HTML 实体_PHP教程

WBOY
Release: 2016-07-13 17:09:42
Original
896 people have browsed it

php教程 符转换为 html 实体

function d_htmlspecialchars($string) {
if(is_array($string)) {
foreach($string as $key => $val) {
$string[$key] = d_htmlspecialchars($val);
}
} else {
$string = str_replace('&', '&', $string);
$string = str_replace('"', '"', $string);
$string = str_replace(''', ''', $string);
$string = str_replace(' $string = preg_replace('/&(#d;)/', '&1', $string);
}
return $string;
}

www.bkjia.com true http://www.bkjia.com/PHPjc/629733.html TechArticle php教程 符转换为 html 实体 function d_htmlspecialchars($string) { if(is_array($string)) { foreach($string as $key = $val) { $string[$key] = d_htmlspecialchars($val); } } el...
Related labels:
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!