This commit is contained in:
2023-12-12 14:10:09 +08:00
parent 10f24b60d6
commit 827fb257ab
3 changed files with 2 additions and 27 deletions
+1 -13
View File
@@ -1,13 +1 @@
<?php
$i = 0;
while ($i <= 100) {
for ($ii = 0; $ii < 10; $ii++) {
echo "\r";
$i++;
echo '[' . $i . '%]' . "\r";
}
sleep(1);
}
<?php