Advertisement
Guest User

Untitled

a guest
Oct 10th, 2012
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. php54.php:
  2. <?namespace foo;
  3.      function htmlspecialchars($s,$flags=null,$encoding=""){ //html2specialchars_decore NO!
  4.         if ($flags==null)$flags=(ENT_COMPAT|ENT_HTML401);
  5.         return \htmlspecialchars($s,$flags,$encoding)."debug";
  6.     }
  7. ?>
  8.  
  9.  
  10. common.php:
  11. require_once "php54.php";
  12. use foo;
  13. echo htmlspecialchars("ะขะตัั‚");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement