一部のフレームワークの自動読み込みメカニズムは、読み込みできないことが判明した場合、制御を次の自動読み込みメソッドに移さずに直接エラーを報告します。たとえば、Alibaba Cloud Log Service Interface SDK を導入したい場合、 SDK には、次のような自動読み込みメソッドが付属しています:
<?php /** * Copyright (C) Alibaba Cloud Computing * All rights reserved */ $version = '0.6.0'; function Aliyun_Log_PHP_Client_Autoload($className) { $classPath = explode('_', $className); if ($classPath[0] == 'Aliyun') { if(count($classPath)>4) $classPath = array_slice($classPath, 0, 4); $filePath = dirname(__FILE__) . '/' . implode('/', $classPath) . '.php'; if (file_exists($filePath)) require_once($filePath); } } spl_autoload_register('Aliyun_Log_PHP_Client_Autoload');
上記の自動読み込みメソッドは、元のフレームワーク独自の読み込みメソッドと競合します。解決策は次のとおりです:
<?php function autoloadAdjust() { // 取原有的加载方法 $oldFunctions = spl_autoload_functions(); // 逐个卸载 if ($oldFunctions){ foreach ($oldFunctions as $f) { spl_autoload_unregister($f); } } // 注册本框架的自动载入 spl_autoload_register( # 就是aliyun sdk的加载方法 function ($className) { $classPath = explode('_', $className); if ($classPath[0] == 'Aliyun') { if(count($classPath)>4) $classPath = array_slice($classPath, 0, 4); unset($classPath[0]); $filePath = dirname(__FILE__) . '/' . implode('/', $classPath) . '.php'; if (file_exists($filePath)) require_once($filePath); } } ); // 如果引用本框架的其它框架已经定义了__autoload,要保持其使用 if (function_exists('__autoload')) { spl_autoload_register('__autoload'); } // 再将原来的自动加载函数放回去 if ($oldFunctions){ foreach ($oldFunctions as $f) { spl_autoload_register($f); } } } # 最后调用上面方法 autoloadAdjust();
注意してください。導入時は上記の方法で利用してください コード内のファイルパスを変更する必要がある場合があります
参考:
最近開発中にZFフレームワークと
最初に開始 ZF をインストールした後、独自のフレームワークを開始した後、独自のフレームワークの自動読み込みが有効になっていないことがわかりました。
両方とも関係者は spl_autoload_register を使用して自動ロード メソッドを登録しました。
解析の結果、ロードできないことが判明した場合、ZF のロード メソッドは次の自動ロード メソッドに制御を移さずに直接エラーを報告することが判明しました。
独自フレームワークのロードメソッドを先に登録しておけば問題ありませんが、独自フレームワークの自動ロードメソッドはクラスが見つからない場合はFalseを返し、次のフレームワークに制御を移します。読み込み方法
プロジェクトのステータスにより登録順序がZFから先になるため、マニュアルを確認して以下の手順で登録順序を調整するように書きました
以上がPHP はプロジェクト内の複数の自動読み込みの競合を解決しますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。