show/hide this revision's text 2 changed array_exists to is_array

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)

This will prevent errors if myArray is declared as a not an array somewhere else.

if(array_exists($myArray)

if(is_array($myArray))
{
   array_push($myArray,'my message');
}
else
{
   $myArray = array("my message");
}
show/hide this revision's text 1

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)

This will prevent errors if myArray is declared as a not an array somewhere else.

if(array_exists($myArray))
{
   array_push($myArray,'my message');
}
else
{
   $myArray = array("my message");
}