On Wed, Mar 26, 2008 at 6:13 PM, Stanislav Malyshev <[EMAIL PROTECTED]> wrote:
> >> I'd wait for 6 with this. May break some scripts.
>  >
>  > I dont think it will break more a piece of code that doesnt really work. ;)
>
>  Af far as I know, breaks with arguments do work in PHP.

<?php
$foo = 2;
while(true) {
        while(true) {
                echo "Hello world!\n";
                if (true) {
                        break $foo;
                }
        }
        echo "Never reached\n";
}

This is what was removed. not normal "break 2;"

-Hannes

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

Reply via email to