|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-08-05 07:53 UTC] jani@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 27 03:00:01 2025 UTC |
Description: ------------ in_array() returns true for in_array('a', array('a'=>true)) instead of false. Reproduce code: --------------- var_dump( in_array( 'a', array('a'=>true) ) ); Expected result: ---------------- bool(false) Actual result: -------------- bool(true)