I have code that is used very extensively which fetches an array from another method, and sometimes returns the first element of that array. Given that null is an acceptable return value for the function, is it worth the performance overhead of calling isset() on the array index (or checking the array length, etc), or is it better to just return the non-existant index (warnings aside). What are the advantages of calling isset() aside from preventing the warning.
The example below is simplified, the real function doesn't just get the first element of the array.
Return index which may not exist:
function get_array_element(){
$array = get_array(); // function that returns array
return $array[0]; // return index 0 which may not exist
}
Versus checking if index is set:
function get_array_element(){
$array = get_array(); // function that returns array
return (isset($array[0]))? // check if index 0 isset() else return null
$array[0] :
null;
}
When error_reporting is set to show E_NOTICE level errors (by setting it to E_ALL, for example), such uses will become immediately visible. By default, error_reporting is set not to show notices.– doublesharp Nov 1 '12 at 20:16isset()on an element of an array. Instead I would check thecount()of$arrayto see if there is at least one element. – Stephen Booher Nov 1 '12 at 20:28E_NOTICEless overhead than calling theisset()function, or swallowing the error. Most likely the function would cost more. I have always usedisset()thinking that it was best practices, but it is likely less efficient. – NappingRabbit Nov 1 '12 at 21:22