案例:PHP案例     状态:不可编辑再运行    进入竖版
 运行结果 
AخA
 
1
<?php
2
$txt="Hello world!";
3
$x=5;
4
$y=10.5;
5
echo $txt."\n";
6
echo $x."\n";
7
echo $y."\n";
8
?>