Posted By


xuanyan on 06/01/08

Tagged


Statistics


Viewed 395 times
Favorited by 1 user(s)

stripslashes_deep


/ Published in: Other
Save to your folder(s)



Copy this code and paste it in your HTML
  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


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.