目前我正在使用boonex dolphin项目
在项目内部,许多php文件以<?
而不是<?php
开头,我也发现在许多语句中它使用了另一个语句,如<?= $start ?>
<td valign="top" align="justify"><?= $str ?></td>
答案 0 :(得分:0)
"<?" : Short tags (you have to allow it from your server php.ini)
"<?php" : this represents php starting point.
"<?=" : it is just to show the output
example :
<?php $test= 'abc';?>
<?=$test?>
its output is abc