php: pushing to an array that may or may not exist - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T20:30:37Z http://stackoverflow.com/feeds/question/351017 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/351017/php-pushing-to-an-array-that-may-or-may-not-exist 1 php: pushing to an array that may or may not exist Corey Maass 2008-12-08T21:41:00Z 2008-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(); // &lt;-- 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#351029 15 Answer by OIS for php: pushing to an array that may or may not exist OIS 2008-12-08T21:43:25Z 2008-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#351041 0 Answer by Andreas Grech for php: pushing to an array that may or may not exist Andreas Grech 2008-12-08T21:47:06Z 2008-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#351050 0 Answer by George Jempty for php: pushing to an array that may or may not exist George Jempty 2008-12-08T21:48:07Z 2008-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#351051 0 Answer by benlumley for php: pushing to an array that may or may not exist benlumley 2008-12-08T21:48:39Z 2008-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#351082 2 Answer by Byron Whitlock for php: pushing to an array that may or may not exist Byron Whitlock 2008-12-08T21:57:12Z 2008-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#353002 0 Answer by Corey Maass for php: pushing to an array that may or may not exist Corey Maass 2008-12-09T14:58:11Z 2008-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>