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