Home >Backend Development >PHP Tutorial >Convert php characters to HTML entities_PHP tutorial

Convert php characters to HTML entities_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-13 17:09:42988browse

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...
Statement:
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