I have this piece of code which works well if the ['extensions'] array exists.. but if the array does not exist then it returns errors. How can I fix this code to not return anything if the extensions array does not exist?
-[UPDATE-
Sorry i had previously inserted the wrong code.. here is the proper code i need checked.
        $oid = array('id-ce-subjectAltName');
        $count = count($cert['tbsCertificate']);
        for($i = 0; $i < $count; $i++) {
             if(array_key_exists('extensions', $cert['tbsCertificate']) &&
                in_array($cert['tbsCertificate']['extensions'][$i]['extnId'], $oid)) {
                $value = $cert['tbsCertificate']['extensions'][$i]['extnId'];
                echo "\n",'<b>[SANs]</b>',"\n","\n";
            }
        }
I get this warning when ['extensions'] does not exist - I would like to prevent any warnings from being generated.
Notice: Undefined index: extensions in C:\xampp\htdocs\labs\certdecode\certdecode.php on line 142
 
    