运行 ❯
获取您自己的
PHP
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <?php $count = 0; function example() { global $count; $count++; echo "$count instructions executed<br>"; } register_tick_function('example'); declare(ticks=1) { $cars = ["Ford", "Volvo", "BMW"]; foreach($cars as $car) { echo "$car <br>"; } } ?> </body> </html>
执行了 1 条指令
福特
执行了 2 条指令
沃尔沃
执行了 3 条指令
宝马
执行了 4 条指令
执行了 5 条指令