ReflectionExtension::getDependencies
依存性を取得する
説明
public array ReflectionExtension::getDependencies()
戻り値
依存する拡張モジュールをキー、そして
Required
、Optional
あるいは Conflicts
のいずれかを値とする連想配列を返します。
例
例1 ReflectionExtension::getDependencies の例
<?php
$dom = new ReflectionExtension('dom');
print_r($dom->getDependencies());
?>
Array
(
[libxml] => Required
[domxml] => Conflicts
)
参考
- ReflectionClass::getVersion