PHP output JavaScript code to escape the implementation code

  • 2020-05-05 10:59:11
  • OfStack

Share:
 
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; 
} 

Just call jsformat($str)

Related articles: