php: pushing to an array that may or may not exist - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T20:30:37Zhttp://stackoverflow.com/feeds/question/351017http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/351017/php-pushing-to-an-array-that-may-or-may-not-exist1php: pushing to an array that may or may not existCorey Maass2008-12-08T21:41:00Z2008-12-09T14:58:11Z
<p>I want to create an array with a message.</p>
<pre><code>$myArray = array('my message');
</code></pre>
<p>But using this code, myArray will get overwritten if it already existed. </p>
<p>If I use array_push, it has to already exist.</p>
<pre><code>$myArray = array(); // <-- has to be declared first.
array_push($myArray, 'my message');
</code></pre>
<p>Otherwise, it will bink. </p>
<p>Is there a way to make the second example above work, without first clearing "$myArray = array();"?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/351017/php-pushing-to-an-array-that-may-or-may-not-exist/351029#35102915Answer by OIS for php: pushing to an array that may or may not existOIS2008-12-08T21:43:25Z2008-12-08T21:43:25Z<p>Here:</p>
<pre><code>$myArray[] = 'my message';
</code></pre>
<p>$myArray have to be an array or not set. If it holds a value which is a string, integer or object without arrayaccess it will fail.</p>
http://stackoverflow.com/questions/351017/php-pushing-to-an-array-that-may-or-may-not-exist/351041#3510410Answer by Andreas Grech for php: pushing to an array that may or may not existAndreas Grech2008-12-08T21:47:06Z2008-12-08T21:47:06Z<p>Check if the array exists first, and if it doesn't, create it...then add the element, knowing that the array will surely be defined before hand : </p>
<pre><code>if (!isset($myArray)) {
$myArray = array();
}
array_push($myArray, 'my message');
</code></pre>
http://stackoverflow.com/questions/351017/php-pushing-to-an-array-that-may-or-may-not-exist/351050#3510500Answer by George Jempty for php: pushing to an array that may or may not existGeorge Jempty2008-12-08T21:48:07Z2008-12-08T21:48:07Z<pre><code>if ($myArray) {
array_push($myArray, 'my message');
}
else {
$myArray = array('my message');
}
</code></pre>
http://stackoverflow.com/questions/351017/php-pushing-to-an-array-that-may-or-may-not-exist/351051#3510510Answer by benlumley for php: pushing to an array that may or may not existbenlumley2008-12-08T21:48:39Z2008-12-08T21:48:39Z<p>OIS' way will work.</p>
<p>Or</p>
<pre><code>if (!isset($myArray))
$myArray=array();
array_push($myArray, 'message');
</code></pre>
http://stackoverflow.com/questions/351017/php-pushing-to-an-array-that-may-or-may-not-exist/351082#3510822Answer by Byron Whitlock for php: pushing to an array that may or may not existByron Whitlock2008-12-08T21:57:12Z2008-12-08T22:21:11Z<p>You should use is_array(), not isset.
Usefull if myArray is being set from a function that returns an array or a string (-1 on error for example)</p>
<p>This will prevent errors if myArray is declared as a not an array somewhere else. </p>
<pre><code>if(is_array($myArray))
{
array_push($myArray,'my message');
}
else
{
$myArray = array("my message");
}
</code></pre>
http://stackoverflow.com/questions/351017/php-pushing-to-an-array-that-may-or-may-not-exist/353002#3530020Answer by Corey Maass for php: pushing to an array that may or may not existCorey Maass2008-12-09T14:58:11Z2008-12-09T14:58:11Z<p>Okay, so it requires logic. I guess i was hoping to do it all in one line. That's good to know. Thanks!</p>