mirror of
https://github.com/php/php-src.git
synced 2024-11-28 12:26:37 +08:00
20 lines
340 B
PHP
20 lines
340 B
PHP
--TEST--
|
|
ReflectionExtension::info()
|
|
--CREDITS--
|
|
Gerrit "Remi" te Sligte <remi@wolerized.com>
|
|
Leon Luijkx <leon@phpgg.nl>
|
|
--FILE--
|
|
<?php
|
|
$obj = new ReflectionExtension('reflection');
|
|
ob_start();
|
|
$testa = $obj->info();
|
|
$testb = ob_get_clean();
|
|
var_dump($testa);
|
|
var_dump(strlen($testb) > 24);
|
|
?>
|
|
==DONE==
|
|
--EXPECT--
|
|
NULL
|
|
bool(true)
|
|
==DONE==
|