1
得到這個錯誤:收到此錯誤命名空間聲明語句必須在腳本中的第一個聲明
Namespace declaration statement has to be the very first statement in the script
在此代碼的最開始:
namespace app\controllers;
use yii\web\Controller;
use app\models\users;
class UserController extends Controller
{
public function actionIndex()
{
echo "working on .....";
}
}
Sageth必須具有「before」<?php –
注意,如果文件的文件以UTF8 BOM開頭,還可能有這些類型的消息。例如Ultra-Edit UTF8新文件的默認設置...在這種情況下,您必須刪除BOM。看看你的編輯器doco。 –
是的,這是我用UTF8保存的UTF8編碼問題及其對我的工作。 – Manish