运行 ❯
获取
您自己的 PHP
服务器
×
更改方向
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <body> <?php ob_start(); echo "This content will not be sent to the browser."; ob_end_clean(); echo "This content will be sent to the browser."; ?> </body> </html>
此内容将发送到浏览器。