Array Key Exists

See all posts See thread Reply

Re: Array Key Exists new!
by colin, 16 years, 6 months ago
To output the log, echo $foo->log after calling $foo->process()

You must have an old version of the class, because from version 0.24 there is a check to make sure that the $info variable is an array:
$this->file_src_mime = (is_array($info) && array_key_exists('mime', $info) ? $info['mime'] : NULL); 
Reply