我们可以用<! - ?如果没有什么用途<?在PHP的开始

时间:2016-08-27 09:02:26

标签: php html boonex-dolphin

目前我正在使用boonex dolphin项目 在项目内部,许多php文件以<?而不是<?php开头,我也发现在许多语句中它使用了另一个语句,如<?= $start ?>

<td valign="top" align="justify"><?= $str ?></td>

1 个答案:

答案 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