案例:php案例     状态:不可编辑再运行    进入竖版
 运行结果 
x
 
1
2
3
4
 <!DOCTYPE html>
5
<html>
6
<body>
7
8
<?php
9
$color = "red";
10
?>
11
  
12
<p>Roses are <?=$color?></p>
13
14
<p><b>注释:</b>简写语法只在将 short_open_tag 配置启用时有效。</p>
15
16
</body>
17
</html>
18
19
20