No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

Rechercher une fonction PHP

ReflectionFunction: : _ _construct

(PHP 5, PHP 7)

ReflectionFunction::__constructConstructs a ReflectionFunction object

Description

public ReflectionFunction::__construct ( mixed $name )

Constructs a ReflectionFunction object.

PHP: ReflectionFunction::__construct - Manual Home of Manuel PHP  Contents Haut

Parameters

name

The name of the function to reflect or a closure.

PHP: ReflectionFunction::__construct - Manual Home of Manuel PHP  Contents Haut

Errors/Exceptions

A ReflectionException if the name parameter does not contain a valid function.

PHP: ReflectionFunction::__construct - Manual Home of Manuel PHP  Contents Haut

Changelog

Version Description
5.3.0 name can now be a closure.

PHP: ReflectionFunction::__construct - Manual Home of Manuel PHP  Contents Haut

Examples

Example #1 ReflectionFunction::__construct() example

<?php
/**
 * A simple counter
 *
 * @return    int
 */
function counter1()
{
    static 
$c 0;
    return ++
$c;
}

/**
 * Another simple counter
 *
 * @return    int
 */
$counter2 = function()
{
    static 
$d 0;
    return ++
$d;

};

function 
dumpReflectionFunction($func)
{
    
// Print out basic information
    
printf(
        
"\n\n===> The %s function '%s'\n".
        
"     declared in %s\n".
        
"     lines %d to %d\n",
        
$func->isInternal() ? 'internal' 'user-defined',
        
$func->getName(),
        
$func->getFileName(),
        
$func->getStartLine(),
        
$func->getEndline()
    );

    
// Print documentation comment
    
printf("---> Documentation:\n %s\n"var_export($func->getDocComment(), 1));

    
// Print static variables if existant
    
if ($statics $func->getStaticVariables())
    {
        
printf("---> Static variables: %s\n"var_export($statics1));
    }
}

// Create an instance of the ReflectionFunction class
dumpReflectionFunction(new ReflectionFunction('counter1'));
dumpReflectionFunction(new ReflectionFunction($counter2));
?>

The above example will output something similar to:

===> The user-defined function 'counter1'
     declared in Z:\reflectcounter.php
     lines 7 to 11
---> Documentation:
 '/**
 * A simple counter
 *
 * @return    int
 */'
---> Static variables: array (
  'c' => 0,
)


===> The user-defined function '{closure}'
     declared in Z:\reflectcounter.php
     lines 18 to 23
---> Documentation:
 '/**
 * Another simple counter
 *
 * @return    int
 */'
---> Static variables: array (
  'd' => 0,
)

Find a PHP function
Error Infobrol

Can not display this page of the Infobrol website

Type of error (18-01)

Unknown format specifier "&"

Please try again in a few minutes…

Return to the home page




Steph