MastodonHelp/web/site/mustard/include/jsencode.php
pezcurrel 5ec1354546 ...
2020-10-18 06:53:27 +02:00

7 lines
76 B
PHP

<?php
function jsencode($str) {
return(str_replace('"','\"',$str));
}
?>