mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
16 lines
236 B
PHP
16 lines
236 B
PHP
--TEST--
|
|
ReflectionExtension::getDependencies()
|
|
--EXTENSIONS--
|
|
xml
|
|
--FILE--
|
|
<?php
|
|
$ext = new ReflectionExtension("xml");
|
|
$deps = $ext->getDependencies();
|
|
var_dump($deps);
|
|
?>
|
|
--EXPECT--
|
|
array(1) {
|
|
["libxml"]=>
|
|
string(8) "Required"
|
|
}
|