源代码:
<?php $txt="Hello world!"; $x=5; $y=10.5; echo $txt; echo "<br />"; echo $x; echo "<br />"; echo $y; ?>
运行结果:
Hello world!<br />5<br />10.5