|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2014-04-08 14:37 UTC] trainmaster at gmx dot net
[2014-04-15 22:51 UTC] dm@php.net
-Status: Open
+Status: Analyzed
[2014-04-15 22:51 UTC] dm@php.net
[2014-11-10 21:56 UTC] cmbecker69 at gmx dot de
[2016-06-22 16:03 UTC] cmb@php.net
-Status: Analyzed
+Status: Duplicate
-Assigned To:
+Assigned To: cmb
[2016-06-22 16:03 UTC] cmb@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 07 13:00:01 2025 UTC |
Description: ------------ The PREG manual states[1]: | In UTF-8 mode, characters with values greater than 128 do not | match any of the POSIX character classes. However, that is not necessarily true, so the statement should be changed appropriately. Test script: --------------- var_dump(preg_match('/^[[:alnum:]]$/u', "\xc3\x84")); Expected result: ---------------- int(0) // expected according to the current documentation Actual result: -------------- int(1)