downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

ReflectionExtension::getFunctions> <ReflectionExtension::getConstants
Last updated: Fri, 20 May 2011

view this page in

ReflectionExtension::getDependencies

(PHP 5)

ReflectionExtension::getDependenciesGets dependencies

Descripción

public array ReflectionExtension::getDependencies ( void )

Gets dependencies, by listing both required and conflicting dependencies.

Parámetros

Esta función no tiene parámetros.

Valores devueltos

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

Ejemplos

Example #1 ReflectionExtension::getDependencies() example

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

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

El resultado del ejemplo sería algo similar a:

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

Ver también

  • ReflectionClass::getVersion()



add a note add a note User Contributed Notes ReflectionExtension::getDependencies
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites