PHP 8.3.4 Released!

ReflectionExtension::getDependencies

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

ReflectionExtension::getDependenciesGets dependencies

Description

public ReflectionExtension::getDependencies(): array

Gets dependencies, by listing both required and conflicting dependencies.

Parameters

This function has no parameters.

Return Values

An associative array with dependencies as keys and either Required, Optional or Conflicts as the values.

Examples

Example #1 ReflectionExtension::getDependencies() example

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

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

The above example will output something similar to:

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

See Also

  • ReflectionClass::getVersion()

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top