PHP for 循环时间:2021-03-08 03:38:03 <!DOCTYPE html> <html> <body> <?php for ($x=0; $x<=10; $x++) { echo "数字是:$x <br>"; } ?> </body> </html>