I am iterating through an array that may or may not have values in array[subarray[]]
How can I execute code if it does, and keep going if it doesn't?
if(isset($array['sub']) && is_array($array['sub'])) { // execute code }