ReflectionExtension::getFunctions

(PHP 5, PHP 7)

ReflectionExtension::getFunctions��ȡ��չ�еĺ���

˵��

public ReflectionExtension::getFunctions ( void ) : array

��ȡ��չ�ж���ĺ�����

����

�˺���û�в�����

����ֵ

����һ��ReflectionFunction�������飬��������Ϊ�������������չ��û�ж��庯���������ؿ����顣

����

Example #1 ReflectionExtension::getFunctions() example

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

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

�������̵���������ڣ�

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
        )

)

�μ�