Date: 01/05/01
- Next message: sniper <email protected>: "[PHP-DEV] PHP 4.0 Bug #7348 Updated: php (cgi-version) crashes when oci8 support compiled in"
- Previous message: sniper <email protected>: "[PHP-DEV] PHP 4.0 Bug #8566 Updated:"
- Next in thread: Andi Gutmans: "Re: [PHP-DEV] http://bugs.php.net/bugs.php?id=8428"
- Reply: Andi Gutmans: "Re: [PHP-DEV] http://bugs.php.net/bugs.php?id=8428"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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.
-- 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>
- Next message: sniper <email protected>: "[PHP-DEV] PHP 4.0 Bug #7348 Updated: php (cgi-version) crashes when oci8 support compiled in"
- Previous message: sniper <email protected>: "[PHP-DEV] PHP 4.0 Bug #8566 Updated:"
- Next in thread: Andi Gutmans: "Re: [PHP-DEV] http://bugs.php.net/bugs.php?id=8428"
- Reply: Andi Gutmans: "Re: [PHP-DEV] http://bugs.php.net/bugs.php?id=8428"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

