运行 ❯
获取您自己的
PHP
服务器
×
更改方向
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <body> <?php // Some browsers will not display the content if it is too short // We use str_pad() to make the output long enough echo str_pad("Hello World!", 4096); // Use flush() to send the string to the browser flush(); // Display the rest of the content three seconds later sleep(3); echo "<br>"; echo "Hello World!"; ?> </body> </html>
你好,世界!
你好,世界!