Laravel架構中composer自動載入的實現詳解

來源:互聯網
上載者:User
Laravel作為在國內國外都頗為流行的PHP架構,風格優雅,其擁有自己的一些特點。下面這篇文章主要給大家介紹了關於Laravel架構中composer自動載入實現的相關資料,文中通過範例程式碼介紹的非常詳細,需要的朋友可以參考下。

基礎

自動載入允許你通過即用即載入的方式來載入需要的類檔案,而不用每次都寫繁瑣的require 和include語句。因此,每一次請求的執行過程都只載入必須的類,也不不要關心類的載入問題,只要需要的時候直接使用即可。

laravel 架構是通過composer 實現的自動載入。

是通過 下面的代碼實現的。

require_once __DIR__ . '/composer' . '/autoload_real.php';return ComposerAutoloaderInit7b20e4d61e2f88170fbbc44c70d38a1f::getLoader();

首先我們對spl_autoload_register和spl_autoload_unregister 這兩個函數進行解釋一下。

spl_autoload_register 自動註冊 一個或多個 自動載入函數,這些函數一般在 執行個體化類的時候,自動運行。

spl_autoload_unregister 恰恰相反。

貼上我實驗的代碼:

這是autoload.php

<?php/** * Created by PhpStorm. * User: Administrator * Date: 2017/12/7 * Time: 14:10 */namespace app;class Autoload { public function __construct() {  $this->autoload(); } public function autoload(){  // spl_autoload_register(array('Autoload','ss'),true); 會觸發致命錯誤,必須帶上命名空間  spl_autoload_register(array('app\Autoload','ss'),true); } public function ss(){  echo 666;  exit; }}

這是index.php

<?php/** * Created by PhpStorm. * User: Administrator * Date: 2017/12/7 * Time: 14:10 */require 'autoload.php';$autoload=new \app\Autoload();$b=new B();// 此時自動運行自動載入函數echo 77;exit;

找到getLoader 這個函數,並對其進行分析:

 public static function getLoader() {  if (null !== self::$loader) {   return self::$loader;  }  //註冊自動載入函數,在載入或執行個體化類,運行loadClassLoader函數  spl_autoload_register(array('ComposerAutoloaderInit7b20e4d61e2f88170fbbc44c70d38a1f', 'loadClassLoader'), true, true);  self::$loader = $loader = new \Composer\Autoload\ClassLoader();  spl_autoload_unregister(array('ComposerAutoloaderInit7b20e4d61e2f88170fbbc44c70d38a1f', 'loadClassLoader'));/********************1********************************************************  $map = require __DIR__ . '/autoload_namespaces.php';  foreach ($map as $namespace => $path) {   $loader->set($namespace, $path);  }  $map = require __DIR__ . '/autoload_psr4.php';  foreach ($map as $namespace => $path) {   $loader->setPsr4($namespace, $path);  }  $classMap = require __DIR__ . '/autoload_classmap.php';  if ($classMap) {   $loader->addClassMap($classMap);  }/********************1********************************************************  $loader->register(true);  $includeFiles = require __DIR__ . '/autoload_files.php';  foreach ($includeFiles as $fileIdentifier => $file) {   composerRequire7b20e4d61e2f88170fbbc44c70d38a1f($fileIdentifier, $file);  }  return $loader; }}

/***** 包圍的部分,主要對ClassLoader 中的

$prefixesPsr0 、$prefixDirsPsr4 、$classMap 等屬性進行賦值。即載入一些配置好的檔案,在後面進行載入或尋找檔案時候,就是從載入的設定檔中尋找。尋找要載入的類主要通過register 函數來實現。然後分析register函數。

public function register($prepend = false){ spl_autoload_register(array($this, 'loadClass'), true, $prepend);}

發現實際將該類中loadClass 函數註冊為自動載入函數。於是開始分析loadClass函數,最終是通過findFile進行類的尋找。

public function findFile($class){/// 特別注意 參數$class 是根據命名空間產生的class名稱,具體請參考命名空間特性。 // work around for PHP 5.3.0 - 5.3.2 https://bugs.php.net/50731 if ('\\' == $class[0]) {  $class = substr($class, 1); } // class map lookup 首先從載入的classMap 中尋找 if (isset($this->classMap[$class])) {  return $this->classMap[$class]; } if ($this->classMapAuthoritative) {  return false; }// 從剛才載入的設定檔中尋找檔案。先按照 psr4 規則尋找,再按照psr0 尋找// 兩種規則的不同主要是對底線的處理方式。 $file = $this->findFileWithExtension($class, '.php'); // Search for Hack files if we are running on HHVM if ($file === null && defined('HHVM_VERSION')) {  $file = $this->findFileWithExtension($class, '.hh'); } if ($file === null) {  // Remember that this class does not exist.  return $this->classMap[$class] = false; } return $file;}

至此register函數分析完。我們接著分析getLoader函數剩餘代碼。

$includeFiles = require __DIR__ . '/autoload_files.php';foreach ($includeFiles as $fileIdentifier => $file) { composerRequire7b20e4d61e2f88170fbbc44c70d38a1f($fileIdentifier, $file);}

這段代碼其實就是載入autoload_file.php 檔案。

總結

您可能感興趣的文章:

PHP服務端環境搭建的圖文教程

php實現希爾排序演算法的方法講解

PHP使用自訂key實現對資料加密解密的方法講解

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.