w3schools
编辑器
运行结果尺寸:
625 x 591
<!DOCTYPE html> <html> <body> <?php echo "This text spans multiple lines."; ?> </body> </html>
x
<!DOCTYPE html>
<html>
<body>
<?php
echo "This text
spans multiple
lines.";
?>
</body>
</html>
This text spans multiple lines.