|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2007-01-26 10:14 UTC] tony2001@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 05:00:02 2025 UTC | 
Description: ------------ seems like a very unique case, since array_merge(range('a','z'),range('0','9')) will produce correct result Reproduce code: --------------- $test = array_merge(range('0','9'),range('a','z')); var_dump(array_search('b',$test)); Expected result: ---------------- 11 Actual result: -------------- 0