Re: [PHP] 4.3.3-RC1 => possible bug in in_array()?

This is a discussion on Re: [PHP] 4.3.3-RC1 => possible bug in in_array()? within the PHP General forums, part of the PHP Programming Forums category; in_array searches for a value, you suply key. This will work as you expect: $data = array(); foreach ($this->_array_a ...


Go Back   Usenet Forums > PHP Programming Forums > PHP General

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 07-25-2003
Marek Kilimajer
 
Posts: n/a
Default Re: [PHP] 4.3.3-RC1 => possible bug in in_array()?

in_array searches for a value, you suply key. This will work as you expect:

$data = array();
foreach ($this->_array_a as $key => $value) {
if (! in_array($value, $this->_array_b)
$data['added'][$key] = $this->_array_a[$key];
}

Branko F. Grac(nar wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> Hi.
>
> I've just found weird thing about in_array() function.
>
> Platform: FreeBSD 5.1/PHP 4.3.3-RC1
>
> Consider this code:
>
> $this->_array_a and $this->_array_b ARE IDENTICAL
>
> $data = array();
> foreach ($this->_array_a as $key => $value) {
> if (! in_array($key, $this->_array_b)
> $data['added'][$key] = $this->_array_a[$key];
> }
>
> Therefore after execution $data should be empty.
>
> But there is whole $this->_array_a in $data after execution...
>
> The following code works ($data is empty after execution):
> foreach ($this->_array_a as $key => $value) {
> if (! isset($this->_array_b[$key]))
> $data['added'][$key] = $this->_array_a[$key];
> }
>
> Why is this happening?
>
> Brane
> -----BEGIN PGP SIGNATURE-----
>
> iD8DBQE/ISOGfiC/E+t8hPcRAll7AJ9EbH6FwwJC/vjsBNG3qMWvWVdmbQCggILs
> UvLwPdDkKk2UrXxpPo6vF5M=
> =OqAg
> -----END PGP SIGNATURE-----
>
>


Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 04:51 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0