8 lines
76 B
PHP
8 lines
76 B
PHP
|
<?php
|
||
|
|
||
|
function jsencode($str) {
|
||
|
return(str_replace('"','\"',$str));
|
||
|
}
|
||
|
|
||
|
?>
|