首页课程PHP趣味課堂while循環

while循環

目录列表

请问以下哪个选项是while循环的语法?

填写内容,使程序从10倒序打印到1

<?php $i = 10; while( 0){ echo $i; $i; }

1/2