php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #13126 in_array() is type-strict by default?
Submitted: 2001-09-04 07:18 UTC Modified: 2001-09-04 18:45 UTC
From: esivertsen at atmel dot com Assigned:
Status: Not a bug Package: Arrays related
PHP Version: 4.0.6 OS: FreeBSD
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
38 - 9 = ?
Subscribe to this entry?

 
 [2001-09-04 07:18 UTC] esivertsen at atmel dot com
It seems like the in_array() function has been slightly altered in this (4.0.6) release compared to 4.0.3. 

A check of an array of chars against integers fail; but it didn't in verison 4.0.3. 

example:

$char_array = array("1","2","3");

if(in_array($char_array, 2))
   $output = "FOUND";
else
   $output = "NOT FOUND";

echo $output;


----> produces the output "NOT FOUND";

Seems some typecasting is necessary this time...


              

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-09-04 18:45 UTC] sniper@php.net
RTFM: 

bool in_array (mixed needle, array haystack [, bool strict])

--Jani

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 19:01:28 2024 UTC