Run ❯
Get your
own PHP
server
Result Size:
625 x 565
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <body> <?php ob_start(); echo "Hello World!"; $contents = ob_get_contents(); ob_end_clean(); echo "The contents of the buffer are: "; echo $contents; ?> </body> </html>
The contents of the buffer are: Hello World!