[PHP-DEV] http://bugs.php.net/bugs.php?id=8428 From: Cynic (cynic <email protected>)
Date: 01/05/01

a me-too for http://bugs.php.net/bugs.php?id=8428.

the first loop prints 'no no' five times, the second
one zero times.
Apache 1.3.15-dev, PHP 4.0.4pl1 RC1 mod_php4, NT5 SP1.

for($i=0; $i<5; ++$i)
{
        switch( 1 )
        {
                case 1 :
                        continue ;
        }
        echo "no no\n" ;
}

for($i=0; $i<5; ++$i)
{
        if( true ) {
                continue ;
        }
        echo "no no\n" ;
}

____________________________________________________________
Cynic:

A member of a group of ancient Greek philosophers who taught
that virtue constitutes happiness and that self control is
the essential part of virtue.

cynic <email protected>

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>