【发布时间】:2016-10-19 10:35:05
【问题描述】:
最后我在我的简单网站项目中尝试了 YII2(不能从 yii1 继续)。
我认为致命错误Class 'Html' not found。
案例 1。
我在 main(布局目录)中使用了 yii\helpers\Html;。
当我在索引(查看目录)中写入Html::img('@web/logo.jpg') 时出现错误'html not found'.
案例 2。
我在main(布局目录)中写Html::img('@web/logo.jpg')运行良好。
案例 3。
我在 main(布局目录)中删除了 use yii\helpers\Html。我写的 use yii\helpers\Html in index (view directory) 运行良好,我的图像可以显示。
那么,我的错误是什么。为什么我不能在索引中使用 Html。
【问题讨论】:
标签: php html class yii2 fatal-error