|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-10-05 16:05 UTC] jeroen@php.net
[2001-10-05 16:14 UTC] jeroen@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 08:00:02 2025 UTC |
script to reproduce the error quickly: // won't produce output, is not boolean FALSE if (array_search ('a', array ('b')) === FALSE) echo 'is boolean FALSE'; // won't produce output, is not of type boolean if (is_bool (array_search ('a', array ('b')))) echo 'is boolean';