Home  >  Article  >  Backend Development  >  Implementation code for outputting escaped JavaScript code in PHP_PHP tutorial

Implementation code for outputting escaped JavaScript code in PHP_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 15:30:10870browse

Share:

Copy code The code is as follows:

function jsformat($str)
{
$str = trim($str);
$str = str_replace('\s\s', '\s', $str);
$str = str_replace(chr(10), '', $str) ;
$str = str_replace(chr(13), '', $str);
$str = str_replace(' ', '', $str);
$str = str_replace('\' , '\\', $str);
$str = str_replace('"', '\"', $str);
$str = str_replace('\'', '\\'', $str);
$str = str_replace("'", "'", $str);
return $str;
}

Needless to say, use it. Just call jsformat($str) directly

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/323283.htmlTechArticleShare it: Copy the code as follows: function jsformat($str) { $str = trim($str); $str = str_replace('\s\s', '\s', $str); $str = str_replace(chr(10), '', $str); $str = str_...
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