Hi Karsten,

>> echo $user['fullname']; // no error at all, $user['fullname'] === NULL
>>
>> Shouldn't this at least trigger a Notice?
> 
> Check your error handling settings, probably warnings/notices are disabled.

reproduce code:

<?php
error_reporting(E_ALL|E_STRICT);
$user = NULL;
echo $user['fullname'];
?>

Best regards

Christopher

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to