MastodonStartpage/web/mustard/include/jsencode.php

8 lines
76 B
PHP
Raw Normal View History

2020-05-01 06:51:22 +02:00
<?php
function jsencode($str) {
return(str_replace('"','\"',$str));
}
?>