為什麼YIi2使用命名空間不用Include也可以使用外部對象?

來源:互聯網
上載者:User
如題,我看到在一些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 這一項,看看是不是定義了整個目錄自動載入還是僅僅是幾個檔案。

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.