09c03-1.php
来自「介绍PHP5的给类型函数应用」· PHP 代码 · 共 14 行
PHP
14 行
<?php// Output a 'waiting message'echo 'Please wait while this task completes';// Now while waiting for a certain task to complete, keep outputting .'swhile (true) { // Echo an extra dot, and flush the buffers to ensure it gets displayed. echo ' .'; flush(); // Now sleep for 1 second and check again: sleep(1); }?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?