MastodonHelp/web/lib/jsencode.php

8 lines
76 B
PHP
Raw Permalink Normal View History

2023-12-26 11:16:24 +01:00
<?php
function jsencode($str) {
return(str_replace('"','\"',$str));
}
?>