Jump to content

in_array with ints?


ZachMEdwards

Recommended Posts

I've got an array of ints.

I need to see if an index (for example 15) is in the array, and then read the value. The problem is that in_array is returning false even though it's (clearly) in the array.

$t = array(13 => 2, 15 => 9);
$x = intval('15');
die(in_array($x, $t) ? 'true' : 'false');

It says false every time.

Link to comment
https://forums.phpfreaks.com/topic/207572-in_array-with-ints/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.