mirror of
https://github.com/danog/parser.git
synced 2024-12-14 18:14:52 +01:00
14 lines
120 B
PHP
14 lines
120 B
PHP
|
<?php
|
||
|
|
||
|
function a(): null {
|
||
|
echo "looping..\n";
|
||
|
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
$bar = a(...);
|
||
|
|
||
|
foo:
|
||
|
$bar();
|
||
|
goto foo;
|