📜  PHP | ReflectionExtension getDependencies()函数

📅  最后修改于: 2022-05-13 01:57:40.473000             🧑  作者: Mango

PHP | ReflectionExtension getDependencies()函数

ReflectionExtension::getDependencies()函数是PHP的一个内置函数,用于返回一个以依赖项作为键,以必需、可选或冲突作为值的数组。

句法:

array ReflectionExtension::getDependencies( void )

参数:该函数不接受任何参数。

返回值:此函数返回一个关联数组,其中包含依赖项作为键,以及必需、可选或冲突作为值。

下面的程序说明了PHP的 ReflectionExtension::getDependencies()函数:



方案一:

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"
}

方案二:

getDependencies());
?>

输出:

array(1) {
  ["libxml"]=>
  string(8) "Required"
}

参考: https://www. PHP.net/manual/en/reflectionextension.getdependencies。 PHP