Ok, I see. There seems to be some fuzz on Sundays so I'll try a
better example (*smiles at Hartmut* :)

<?
$foo = array(); echo $foo[0] . "\n"; // <-- warning
$foo = array(); echo @$foo[0] . "\n"; // <-- no warning

$foo = "foo"; echo $foo{3} . "\n"; // <-- warning
$foo = "foo"; echo @$foo{3} . "\n"; // <-- warning
?>

Doesn't make sense to me.

And forget the note about documention (Derick, you lied to me
*ducks* :-)

- Markus

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to