ReflectionExtension::getDependencies()函數是PHP中的一個內置函數,用於返回一個數組,其中依賴項為鍵,而Required,Optional或Conflicts為值。
用法:
array ReflectionExtension::getDependencies( void )
參數:該函數不接受任何參數。
返回值:此函數返回一個關聯數組,其中包含依賴項作為鍵,並包含Required,Optional或Conflicts作為值。
以下示例程序旨在說明PHP中的ReflectionExtension::getDependencies()函數:
示例1:
<?php
// Defining an extension
$A = 'DOM';
// Using ReflectionExtension() over the
// specified extension
$extension = new ReflectionExtension($A);
// Calling the getDependencies() function
$B = $extension->getDependencies();
// Getting an array with dependencies as keys
// and either Required, Optional or
// Conflicts as the values.
var_dump($B);
?>
輸出:
array(2) { ["libxml"]=> string(8) "Required" ["domxml"]=> string(9) "Conflicts" }
示例2:
<?php
// Using ReflectionExtension() over
// an extension xml
$extension = new ReflectionExtension('xml');
// Calling the getDependencies() function and
// Getting an array with dependencies as keys
// and either Required, Optional or
// Conflicts as the values.
var_dump($extension->getDependencies());
?>
輸出:
array(1) { ["libxml"]=> string(8) "Required" }
參考: https://www.php.net/manual/en/reflectionextension.getdependencies.php
相關用法
- PHP ReflectionExtension getClasses()用法及代碼示例
- PHP ReflectionExtension getVersion()用法及代碼示例
- PHP ReflectionExtension info()用法及代碼示例
- PHP ReflectionExtension getConstants()用法及代碼示例
- PHP ReflectionExtension export()用法及代碼示例
- PHP ReflectionExtension getFunctions()用法及代碼示例
- PHP ReflectionExtension getINIEntries()用法及代碼示例
- PHP ReflectionExtension isPersistent()用法及代碼示例
- PHP ReflectionExtension getClassNames()用法及代碼示例
- PHP ReflectionExtension getName()用法及代碼示例
- PHP ReflectionExtension __toString()用法及代碼示例
- PHP ReflectionExtension isTemporary()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 PHP | ReflectionExtension getDependencies() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。