运行 ❯
获取您的
自有 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>"; } enddeclare; ?> </body> </html>
已执行 1 条指令
福特
已执行 2 条指令
沃尔沃
已执行 3 条指令
宝马
已执行 4 条指令
已执行 5 条指令