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

ReflectionClass::isAnonymous

(PHP 7)

ReflectionClass::isAnonymousChecks if class is anonymous

Description

public ReflectionClass::isAnonymous ( void ) : bool

Checks if a class is an anonymous class.

PHP: ReflectionClass::isAnonymous - Manual Home of Manuel PHP  Contents Haut

Return Values

Returns TRUE on success or FALSE on failure.

PHP: ReflectionClass::isAnonymous - Manual Home of Manuel PHP  Contents Haut

Examples

Example #1 ReflectionClass::isAnonymous() example

<?php
class TestClass {}
$anonClass = new class {};

$normalClass = new ReflectionClass('TestClass');
$anonClass  = new ReflectionClass($anonClass);

var_dump($normalClass->isAnonymous());
var_dump($anonClass->isAnonymous());

?>

The above example will output:

bool(false)
bool(true)

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