Created
August 19, 2013 12:05
-
-
Save potato2003/6268417 to your computer and use it in GitHub Desktop.
http://togetter.com/li/429782 UTF8モードだとalnumでひらがながマッチする
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
preg_match('/^([[:alnum:]]*)([[:^alnum:]]*)$/u', 'aaaaああああ', $matches); | |
if ($matches[0] === 'aaaaああああ') { | |
echo 'MATCH!' | |
} | |
/* | |
UTF8モードだとalnumでひらがながマッチする | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment