ReflectionExtension::getDependencies

(PHP 5 >= 5.1.3, PHP 7, PHP 8)

ReflectionExtension::getDependencies获取依赖项

描述

public ReflectionExtension::getDependencies(): array

获取依赖项,列出必需的和冲突的依赖项。

参数

此函数没有参数。

返回值

一个关联的 array,其中依赖项作为键,RequiredOptionalConflicts 作为值。

示例

示例 #1 ReflectionExtension::getDependencies() 示例

<?php
$dom
= new ReflectionExtension('dom');

print_r($dom->getDependencies());
?>

上面的示例将输出类似以下内容

Array
(
    [libxml] => Required
    [domxml] => Conflicts
)

参见

  • ReflectionClass::getVersion()

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top