Why and What purpose use this <?= ?> syntax in cakephp
This question already has an answer here:
It is the short echo syntax. It is a built-in part of PHP not specific to the CakePHP framework. However, the CakePHP coding standards state that it should be used in template files instead of <?php echo ...
.
上一篇: PHP中使用<?=?>标记有什么用?