运行 ❯
获取你自己的
PHP
服务器
×
更改方向
更改主题,暗/亮
转到 Spaces
<!DOCTYPE html> <html> <body> <?php $i = 1; while ($i < 6) { echo $i; $i++; } ?> </body> </html>
12345