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