php 解決專案中多個自動載入衝突問題

2020-07-16 10:06:06
在有的框架中的自動載入機制,在發現無法載入時, 直接報錯, 而沒有把控制權轉交給下一個自動載入方法., 如我要引入阿里雲紀錄檔服務介面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 解決專案中多個自動載入衝突問題的詳細內容,更多請關注TW511.COM其它相關文章!