短标记符号中的php标记有什么区别,因为我在<?php
标记中从Yii2获取视图渲染时遇到问题,而<?=
标记没有问题抱歉我刚刚开始学习yii2但是我知道的事实是php和经典符号的简写符号是相同的,但为什么它很重要,我怎么能找出使用哪一个。
<?php
/* @var $this yii\web\View */
use yii\helpers\Html;
$this->title = 'About';
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="site-about">
<h1><?= Html::encode($this->title) ?></h1>
<p>
This is the About page. You may modify the following file to customize its content:
</p>
<?= $this->render('_part1.php'); ?>
<?= $this->render('_part2.php'); ?>
<code><?= __FILE__ ?></code>
</div>