如題,我看到在一些Yii2的寫法中命名空間是可以被直接載入的,比如:
namespace web\models; use Yii; use web\classes\CPost; //... code ... $post = new CPost;
在以上 web\models 命名空間中,CPost對象是可以直接用new關鍵詞建立的,
但我自己單獨做了命名空間的測試如下:
namespace web\models; // include "../classes/CPost.php"; 這句必須取消注釋才不報錯 use web\classes\CPost; class MPost { public function run(){ echo "MPost->run()被調用"; } public function getClassFunc(){ $class = new CPost; $class->run(); //報錯,提示找不到 web\classes\CPost對象 } } $post = new MPost; $post->getClassFunc();
在測試代碼中,如果不inlucde CPost檔案的話就會報錯,
但Yii2全程未引入檔案,僅用命名空間就能直接建立對象。
請問這是怎麼回事,又是如何做到的?
回複內容:
如題,我看到在一些Yii2的寫法中命名空間是可以被直接載入的,比如:
namespace web\models; use Yii; use web\classes\CPost; //... code ... $post = new CPost;
在以上 web\models 命名空間中,CPost對象是可以直接用new關鍵詞建立的,
但我自己單獨做了命名空間的測試如下:
namespace web\models; // include "../classes/CPost.php"; 這句必須取消注釋才不報錯 use web\classes\CPost; class MPost { public function run(){ echo "MPost->run()被調用"; } public function getClassFunc(){ $class = new CPost; $class->run(); //報錯,提示找不到 web\classes\CPost對象 } } $post = new MPost; $post->getClassFunc();
在測試代碼中,如果不inlucde CPost檔案的話就會報錯,
但Yii2全程未引入檔案,僅用命名空間就能直接建立對象。
請問這是怎麼回事,又是如何做到的?
spl autoload,順便去學下composer
查看一下 composer.json 檔案內容,裡面有 autoload 這一項,看看是不是定義了整個目錄自動載入還是僅僅是幾個檔案。