Why and What purpose use this <?= ?> syntax in cakephp

This question already has an answer here:

  • What does '<?=' mean in PHP? 8 answers

  • 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 ... .

    链接地址: http://www.djcxy.com/p/59342.html

    上一篇: PHP中使用<?=?>标记有什么用?

    下一篇: 为什么和什么目的在cakephp中使用这个<?=?>语法