php的配置文件 php.ini 中有一个short_open_tag
开启以后可以使用PHP的短标签

// 短标签, 不推荐
<? ?> 


// 长标签, 规范的方法
<?php ?>

// 以下两种方式等价
<?= $name ?>

<?php echo $name; ?>