I wonder what is slower or faster:
if( @$myvar['test'] === null ) { .. }
or:
if( !isset( $myvar['test'] )) { .. }
Also wondering if you suppress a warning or notice with @, will it make the evaluation slower?
Thanks for your answer!
PS: It is not about the difference, i know that isset checks if a element is set and not if it is empty or not. But in my case is only important to know if it is empty.