Guest User

Untitled

a guest
Sep 22nd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <?php
  2.  
  3. function clean_utf8($s) {
  4. return iconv('UTF-8', 'UTF-8//IGNORE', $s);
  5. }
  6.  
  7. function check_utf8($s) {
  8. return mb_check_encoding($s, 'UTF-8');
  9. }
  10.  
  11. function clean_input(&$a) {
  12. if (isset($a) && is_array($a) && !empty($a))
  13. foreach ($a as $k => &$v)
  14. clean_input($v);
  15. elseif (is_string($a) && !mb_check_encoding($a, 'UTF-8'))
  16. $a = iconv('UTF-8', 'UTF-8//IGNORE', $a);
  17. return true;
  18. }
Add Comment
Please, Sign In to add comment