On Wed, Nov 23, 2011 at 6:58 PM, Richard Quadling <rquadl...@gmail.com> wrote:

> Just looking for any test relating to isset() to see what tests will now fail.
>
> Neither of the isset() tests ext/standard/tests/general_functions look
> at arrays with associative indices.
>
> The behaviour with regard to unavailable associative indices has no tests.
>
> But using loose typing as a fallback for non existent keys seems
> really really wrong.
>
> Especially if the key is a constant. On what planet should ...
>
> isset($arr['exists']['test_existance']) should become isset($arr['exists'][0])
>
> That just seems really wrong and the work around is awful.

That's exactly why I stoped to use this syntax a long time ago. And I
was in favor to deprecate it and actually remove it the next major
release (6 that is). But that's another discussion.

Unless I'm mistaken it seems that we have a clear and vicious BC break
here, the kind of changes that are annoying to catch and does not
bring a lot of benefits to PHP (given the actual usage of this
syntax). I would go with a revert, add tests and never change this
behavior again. It is a confusing enough topic.

Cheers,
-- 
Pierre

@pierrejoye | http://blog.thepimp.net | http://www.libgd.org

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

Reply via email to