jsencode.php 76 B

1234567
  1. <?php
  2. function jsencode($str) {
  3. return(str_replace('"','\"',$str));
  4. }
  5. ?>