Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在编码中我总是写
<?= $this->description?> 而不是 <?php echo $this->description ?>
<?= $this->description?>
<?php echo $this->description ?>
它更快更容易。但是,在我开始使用 zend 框架后,我无法使用该功能。所以你有什么想法吗?
您需要short_open_tag在配置文件 php.ini 中启用该选项。默认情况下禁用短标签。
short_open_tag