Advertisement
Guest User

asd

a guest
Sep 28th, 2011
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. <?php
  2. print "no space: <br/>";
  3. print_r(preg_match('#\s#', "æ,ø,å")); // returns 0
  4. print "<br/>";
  5. print "with space: <br/>";
  6. print_r(preg_match('#\s#', "æ,ø, å")); //returns 1
  7. ?>
  8.  
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement