运行 ❯
获取你
自己的 PHP
服务器
×
更改方向
更改主题,浅色/深色
前往 Spaces
<!DOCTYPE html> <html> <body> <?php $colors = array("red", "green", "blue", "yellow"); foreach ($colors as $x) { if ($x == "blue") break; echo "$x <br>"; } ?> </body> </html>
红色
绿色