Hi!

>  <?php
>  $foo = 42;
>  $foo['bar']; // => NULL
>  $v = NULL; 
>  $v[0][1][2][3][4][5][6][7][8][9]; // NULL
> 
> this code is semantically wrong and I would like to have error/exception
> for such 
> erroneous codes. It's inconsistent with array object, too.

Why it's wrong? You try to get that's something not there, you get NULL.
I don't see anything wrong. Adding fatal error about every little thing
that isn't as expected never was how PHP worked.

-- 
Stas Malyshev
smalys...@gmail.com

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

Reply via email to