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

search for in the

ReflectionExtension::getINIEntries> <ReflectionExtension::getDependencies
[edit] Last updated: Fri, 23 Mar 2012

view this page in

ReflectionExtension::getFunctions

(PHP 5)

ReflectionExtension::getFunctionsEklenti işlevlerini döndürür

Açıklama

public array ReflectionExtension::getFunctions ( void )

Eklentide tanımlı işlevleri döndürür.

Değiştirgeler

Bu işlevin değiştirgesi yoktur.

Dönen Değerler

ReflectionFunction nesnelerinden oluşan bir ilişkisel dizi. İşlev isimleri anahtarlara yerleştirilir. Hiç işlev tanımlanmamışsa boş bir dizi döner.

Örnekler

Örnek 1 - ReflectionExtension::getFunctions() örneği

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

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

Yukarıdaki örnek şuna benzer bir çıktı üretir:

Array
(
    [simplexml_load_file] => ReflectionFunction Object
        (
            [name] => simplexml_load_file
        )

    [simplexml_load_string] => ReflectionFunction Object
        (
            [name] => simplexml_load_string
        )

    [simplexml_import_dom] => ReflectionFunction Object
        (
            [name] => simplexml_import_dom
        )

)

Ayrıca Bakınız



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

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