In this case, you want to use is_array($array['a']['b']['c']) rather than isset($array['a']['b']['c']['something']) , or maybe a crafty combination of the two, to make sure you don't get any errors if it's not installed, when you check if it's an array.
Sort of:
if(isset($array['a']['b']['c']['something']) && is_array($array['a']['b']['c'])){ [...] }
source share