MastodonHelp/web/lib/jsencode.php
2023-12-26 11:16:24 +01:00

7 lines
76 B
PHP

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