Skip to content

Instantly share code, notes, and snippets.

@rudwolf
Created June 1, 2017 21:29
Show Gist options
  • Save rudwolf/ca3956695af6c9d5cb2304f34c57cad5 to your computer and use it in GitHub Desktop.
Save rudwolf/ca3956695af6c9d5cb2304f34c57cad5 to your computer and use it in GitHub Desktop.
$jsString = ob_get_contents();
ob_end_clean();
$unescaped = array("'", '"');
$escaped = array("\\x27", "\\x22");
echo str_replace($unescaped, $escaped, $jsString);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment