Convert php characters to HTML entities_PHP tutorial

WBOY
Release: 2016-07-13 17:09:42
Original
959 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);
$string = str_replace('>', '>', $string);
  $string = preg_replace('/&(#d;)/', '&1', $string);
 }
 return $string;
}

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/629733.htmlTechArticlephp教程 符转换为 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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template