mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
f66f55edc5
[DOC]
17 lines
147 B
PHP
Executable File
17 lines
147 B
PHP
Executable File
--TEST--
|
|
jump 02: goto forward
|
|
--FILE--
|
|
<?php
|
|
$n = 1;
|
|
L1:
|
|
if ($n > 3) goto L2;
|
|
echo "$n: ok\n";
|
|
$n++;
|
|
goto L1;
|
|
L2:
|
|
?>
|
|
--EXPECT--
|
|
1: ok
|
|
2: ok
|
|
3: ok
|