Your Ad Here

Posted By

xuanyan on 06/01/08


Tagged

textmate stripslashesdeep


Versions (?)

Who likes this?

1 person have marked this snippet as a favorite

heinz1959


stripslashes_deep


 / Published in: Other
 

  1. if(!function_exists('stripslashes_deep')) {
  2. function stripslashes_deep($value) {
  3. $value = is_array($value) ? array_map('stripslashes_deep', $value) : stripslashes($value);
  4. return $value;
  5. }
  6. }

Report this snippet  

You need to login to post a comment.