|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-10-09 12:29 UTC] n dot poulden at ntlworld dot com
[2002-10-09 12:44 UTC] sander@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 07 23:00:02 2025 UTC |
when performing a switch case on large strings, the function seems to fail. for example: $str="000001011110011110000001000001011110011110000001"; switch($str) { case "000001011110011110000001000001000111000111011001": echo "checking: $str - case: 000001011110011110000001000001000111000111011001"; break; case "000001011110011110000001000001011110011110000001": echo "checking: $str - case: 000001011110011110000001000001011110011110000001"; break; } This will show the error.