PHP管理依賴(dependency)關係工具 Composer的自動載入(autoload),dependencyautoload_PHP教程

來源:互聯網
上載者:User

PHP管理依賴(dependency)關係工具 Composer的自動載入(autoload),dependencyautoload


舉例來說,假設我們的項目想要使用 monolog 這個日誌工具,就需要在composer.json裡告訴composer我們需要它:

{ "require": {  "monolog/monolog": "1.*" }}

之後執行:

php composer.phar install

好,現在安裝完了,該怎麼使用呢?Composer自動產生了一個autoload檔案,你只需要引用它

require '/path/to/vendor/autoload.php';

然後就可以非常方便的去使用第三方的類庫了,是不是感覺很棒啊!對於我們需要的monolog,就可以這樣用了:

use Monolog\Logger;use Monolog\Handler\StreamHandler;// create a log channel$log = new Logger('name');$log->pushHandler(new StreamHandler('/path/to/log/log_name.log', Logger::WARNING));// add records to the log$log->addWarning('Foo');$log->addError('Bar');

在這個過程中,Composer做了什麼呢?它產生了一個autoloader,再根據各個包自己的autoload配置,從而幫我們進行自動載入的工作。(如果對autoload這部分內容不太瞭解,可以看我之前的 一篇文章
)接下來讓我們看看Composer是怎麼做的吧。

對於第三方包的自動載入,Composer提供了四種方式的支援,分別是 PSR-0和PSR-4的自動載入(我的一篇文章也有介紹過它們),產生class-map,和直接包含files的方式。

PSR-4是composer推薦使用的一種方式,因為它更易使用並能帶來更簡潔的目錄結構。在composer.json裡是這樣進行配置的:

{  "autoload": {    "psr-4": {      "Foo\\": "src/",    }  }}

key和value就定義出了namespace以及到相應path的映射。按照PSR-4的規則,當試圖自動載入 "Foo\\Bar\\Baz" 這個class時,會去尋找 "src/Bar/Baz.php" 這個檔案,如果它存在則進行載入。注意, "Foo\\"
並沒有出現在檔案路徑中,這是與PSR-0不同的一點,如果PSR-0有此配置,那麼會去尋找

"src/Foo/Bar/Baz.php"

這個檔案。

另外注意PSR-4和PSR-0的配置裡,"Foo\\"結尾的命名空間分隔字元必須加上並且進行轉義,以防出現"Foo"匹配到了"FooBar"這樣的意外發生。

在composer安裝或更新完之後,psr-4的配置換被轉換成namespace為key,dir path為value的Map的形式,並寫入產生的 vendor/composer/autoload_psr4.php 檔案之中。

{  "autoload": {    "psr-0": {      "Foo\\": "src/",    }  }}

最終這個配置也以Map的形式寫入產生的

vendor/composer/autoload_namespaces.php

檔案之中。

Class-map方式,則是通過配置指定的目錄或檔案,然後在Composer安裝或更新時,它會掃描指定目錄下以.php或.inc結尾的檔案中的class,產生class到指定file path的映射,並加入新產生的 vendor/composer/autoload_classmap.php 檔案中,。

{  "autoload": {    "classmap": ["src/", "lib/", "Something.php"]  }}

例如src/下有一個BaseController類,那麼在autoload_classmap.php檔案中,就會產生這樣的配置:

'BaseController' => $baseDir . '/src/BaseController.php'

Files方式,就是手動指定供直接載入的檔案。比如說我們有一系列全域的helper functions,可以放到一個helper檔案裡然後直接進行載入

{  "autoload": {    "files": ["src/MyLibrary/functions.php"]  }}

它會產生一個array,包含這些配置中指定的files,再寫入新產生的

vendor/composer/autoload_files.php

檔案中,以供autoloader直接進行載入。

下面來看看composer autoload的代碼吧

<?php// autoload_real.php @generated by Composerclass ComposerAutoloaderInit73612b48e6c3d0de8d56e03dece61d11{  private static $loader;  public static function loadClassLoader($class)  { if ('Composer\Autoload\ClassLoader' === $class) {   require __DIR__ . '/ClassLoader.php'; }  }  public static function getLoader()  { if (null !== self::$loader) {   return self::$loader; } spl_autoload_register(array('ComposerAutoloaderInit73612b48e6c3d0de8d56e03dece61d11', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(); spl_autoload_unregister(array('ComposerAutoloaderInit73612b48e6c3d0de8d56e03dece61d11', 'loadClassLoader')); $vendorDir = dirname(__DIR__); //verdor第三方類庫提供者目錄 $baseDir = dirname($vendorDir); //整個應用的目錄 $includePaths = require __DIR__ . '/include_paths.php'; array_push($includePaths, get_include_path()); set_include_path(join(PATH_SEPARATOR, $includePaths)); $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); } $loader->register(true); $includeFiles = require __DIR__ . '/autoload_files.php'; foreach ($includeFiles as $file) {   composerRequire73612b48e6c3d0de8d56e03dece61d11($file); } return $loader;  }}function composerRequire73612b48e6c3d0de8d56e03dece61d11($file){  require $file;}

首先初始化ClassLoader類,然後依次用上面提到的4種載入方式來註冊/直接載入,ClassLoader的一些核心代碼如下:

/**  * @param array $classMap Class to filename map  */ public function addClassMap(array $classMap) {  if ($this->classMap) {   $this->classMap = array_merge($this->classMap, $classMap);  } else {   $this->classMap = $classMap;  } } /**  * Registers a set of PSR-0 directories for a given prefix,  * replacing any others previously set for this prefix.  *  * @param string  $prefix The prefix  * @param array|string $paths The PSR-0 base directories  */ public function set($prefix, $paths) {  if (!$prefix) {   $this->fallbackDirsPsr0 = (array) $paths;  } else {   $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;  } } /**  * Registers a set of PSR-4 directories for a given namespace,  * replacing any others previously set for this namespace.  *  * @param string  $prefix The prefix/namespace, with trailing '\\'  * @param array|string $paths The PSR-4 base directories  *  * @throws \InvalidArgumentException  */ public function setPsr4($prefix, $paths) {  if (!$prefix) {   $this->fallbackDirsPsr4 = (array) $paths;  } else {   $length = strlen($prefix);   if ('\\' !== $prefix[$length - 1]) {    throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");   }   $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;   $this->prefixDirsPsr4[$prefix] = (array) $paths;  } } /**  * Registers this instance as an autoloader.  *  * @param bool $prepend Whether to prepend the autoloader or not  */ public function register($prepend = false) {  spl_autoload_register(array($this, 'loadClass'), true, $prepend); } /**  * Loads the given class or interface.  *  * @param string $class The name of the class  * @return bool|null True if loaded, null otherwise  */ public function loadClass($class) {  if ($file = $this->findFile($class)) {   includeFile($file);   return true;  } } /**  * Finds the path to the file where the class is defined.  *  * @param string $class The name of the class  *  * @return string|false The path if found, false otherwise  */ public function findFile($class) {  //這是PHP5.3.0 - 5.3.2的一個bug 詳見https://bugs.php.net/50731  if ('\\' == $class[0]) {   $class = substr($class, 1);  }  // class map 方式的尋找  if (isset($this->classMap[$class])) {   return $this->classMap[$class];  }  //psr-0/4方式的尋找  $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; } private function findFileWithExtension($class, $ext) {  // PSR-4 lookup  $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;  $first = $class[0];  if (isset($this->prefixLengthsPsr4[$first])) {   foreach ($this->prefixLengthsPsr4[$first] as $prefix => $length) {    if (0 === strpos($class, $prefix)) {     foreach ($this->prefixDirsPsr4[$prefix] as $dir) {      if (file_exists($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) {       return $file;      }     }    }   }  }  // PSR-4 fallback dirs  foreach ($this->fallbackDirsPsr4 as $dir) {   if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {    return $file;   }  }  // PSR-0 lookup  if (false !== $pos = strrpos($class, '\\')) {   // namespaced class name   $logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1)    . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);  } else {   // PEAR-like class name   $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;  }  if (isset($this->prefixesPsr0[$first])) {   foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) {    if (0 === strpos($class, $prefix)) {     foreach ($dirs as $dir) {      if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {       return $file;      }     }    }   }  }  // PSR-0 fallback dirs  foreach ($this->fallbackDirsPsr0 as $dir) {   if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {    return $file;   }  }  // PSR-0 include paths.  if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {   return $file;  } }/** * Scope isolated include. * * Prevents access to $this/self from included files. */function includeFile($file){ include $file;}


php 為何自動載入可以等同於上面的一群require?

涼良說得對。用autoload
用法相當簡單,唯一的條件你的class名字必須跟目錄名對稱。
可以看例子
如果log.php在class的目錄裡面,裡面的class名就應該這樣取: class_log
class class_log { }
?>

之後呢就在要include的地方加上這個function
可以看例子

function __autoload($class) {
$path_array = explode('_', $class); ///把class和log分開成array

$path = implode(DIRECTORY_SEPARATOR, $path_array); /// 把array用/重新連在一起

include $path.'.php'; 最後直接include就行了。

}

$log = new class_log();
?>

根據這個方法應該行得通。
 

PHP 自動載入對象 __autoload

好像不是這樣用吧!
__autoload 函數只有當 new ClassName 並且不存在 類 ClassName 時,系統就自動調用 __autoload ,這個函數有一個參數就是 類名稱 然後在這個函數裡定義 尋找類的執行代碼並包含進去。
參考資料:www.oscodes.net
 

http://www.bkjia.com/PHPjc/865616.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/865616.htmlTechArticlePHP管理依賴(dependency)關係工具 Composer的自動載入(autoload),dependencyautoload 舉例來說,假設我們的項目想要使用 monolog 這個日誌工具,就需...

  • 相關文章

    聯繫我們

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