|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-09-19 03:56 UTC] crackfan at qq dot com
-Status: Open
+Status: Closed
[2011-09-19 03:56 UTC] crackfan at qq dot com
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 21:00:02 2025 UTC |
Description: ------------ php5.3.8 usually report:Fatal error: Call to undefined function but xxx function exists. Test script: --------------- function is_ascii($string) { return preg_match('%^(?: [\x09\x0A\x0D\x20-\x7E] # ASCII |[\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte )*$%xs', $string); } $str = "123asd!"; if(is_ascii($str)) { echo "ansi"; } else { echo "Not ansi"; }