一直都报出Class 'yii2\web\Controller' not found
<?php
namespace app\controllers;
use yii2\web\Controller;
Class HelloController extends Controller{
public function actionIndex() {
echo 'hello world';
}
}
<?php
namespace app\controllers;
use yii2\web\Controller;
Class HelloController extends Controller{
public function actionIndex() {
echo 'hello world';
}
}
2017-03-15
举报