使用PHP反射機制獲取函數檔案

2020-07-16 10:05:53
反射 Reflection

反射可以簡單理解為掃描類的屬性、方法和注釋的能力。

用法

PHP 為我們提供了豐富的方法,使我們可以方便的使用。

$reflect = new ReflectionClass('AppFoo');
$reflect->getMethods(); // 獲取方法的陣列
$reflect->getDocComment(); // 獲取文件注釋
……

應用

有時系統需要向使用者提供內建方法文件說明來使用,那麼我們則可以通過 PHP 反射實現。

建立內建函數類

class FooFunction{
    /**
     * 獲取當前週週一時間戳
     *
     * @return false|string
     */
    public static function mondayTimeStamp(){
        $targetTime = strtotime('now');
        $w = date('w', $targetTime);
        $w = ($w == 0 ? 7 : $w);
        return mktime(0,0,0, date('m', $targetTime), date('d', $targetTime)-($w-1), date('Y', $targetTime));
    }
    /**
     * 獲取當前週週一日期
     *
     * @return false|string
     */
    public static function mondayDate(){
        return date('Y-m-d', self::mondayTimeStamp());
    }
}

掃描內建函數類,生成文件

// 利用 PHP 反射
$reflect = new ReflectionClass('FooFunction');
$data = [];
// 獲取類中的方法
$methods = $reflect->getMethods();
foreach ($methods as $method){
    $methodName = $method->getName();
    $methodDocStr = $reflect->getMethod($methodName)->getDocComment();
    // 過濾方法注釋前面的(*)
    $pattern = "/[@a-zA-Zx{4e00}-x{9fa5}]+.*/u";
    preg_match_all($pattern, $methodDocStr, $matches, PREG_PATTERN_ORDER);
    $data[] = [
        'name' => $methodName,
        'doc' => $matches[0]
    ];
}
echo json_encode($data);

結果

[
    {
        "name": "mondayTimeStamp",
        "doc": [
            "返回當前週週一時間戳",
            "@return false|string"
        ]
    },
    {
        "name": "mondayDate",
        "doc": [
            "返回當前週週一日期",
            "@return false|string"
        ]
    }
]

推薦教學:《PHP教學

以上就是使用PHP反射機制獲取函數文件的詳細內容,更多請關注TW511.COM其它相關文章!