Is it good practice to initialize the elements in an associative array in php? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T15:42:34Zhttp://stackoverflow.com/feeds/question/308835http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/308835/is-it-good-practice-to-initialize-the-elements-in-an-associative-array-in-php0Is it good practice to initialize the elements in an associative array in php?Ben2008-11-21T13:52:05Z2008-11-21T13:57:16Z
<p>I'm finding myself doing a lot of things with associative arrays in PHP.</p>
<p>I was doing this:</p>
<pre><code> foreach ($item as $key=>$value)
{
if ($arr[$key] == null)
{
$arr[$key] = 0;
}
$arr[$key] += $other_arr[$value];
}
</code></pre>
<p>But then I realised that it works fine if I exclude the line that initializes $arr[$key], presumably since it's null which is treated as the same as 0.</p>
<p>Is making that kind of assumption safe in php? And if it's safe, is it a good idea?</p>
<p>Thanks,</p>
<p>Ben</p>
http://stackoverflow.com/questions/308835/is-it-good-practice-to-initialize-the-elements-in-an-associative-array-in-php/308852#3088526Answer by Greg for Is it good practice to initialize the elements in an associative array in php?Greg2008-11-21T13:57:16Z2008-11-21T13:57:16Z<p>It is safe but I'd recommend against it.
If you put your error reporting up to E_NOTICES you'll see your code producing a lot of them, masking any real errors (such as a mistyped variable name).</p>
<p>What you should really be doing is:</p>
<pre><code>if (!isset($arr[$key]))
$arr[$key] = 0;
</code></pre>
<p>This won't raise a notice (but be very careful not to mis-type $arr inside isset()).</p>