|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-12-08 12:20 UTC] tony2001@php.net
[2005-12-16 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 15:00:01 2025 UTC |
Description: ------------ mb_ereg() bug in php 5.05 linux OP charset=utf-8 string to be searched is Chinese-simplified character string pattern: \s Problem: wrong result Reproduce code: --------------- <?php $userid="????"; if(mb_ereg("\s",$userid)) { echo "found space"; } else { echo "not found space"; } ?>