1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/reflection/tests/ReflectionObject_getName_basic.phpt
2009-04-08 16:08:58 +00:00

28 lines
554 B
PHP

--TEST--
ReflectionObject::getName() - basic function test
--FILE--
<?php
$r0 = new ReflectionObject();
var_dump($r0->getName());
$r1 = new ReflectionObject(new stdClass);
var_dump($r1->getName());
class C { }
$myInstance = new C;
$r2 = new ReflectionObject($myInstance);
var_dump($r2->getName());
$r3 = new ReflectionObject($r2);
var_dump($r3->getName());
?>
--EXPECTF--
Warning: ReflectionObject::__construct() expects exactly 1 parameter, 0 given in %s on line 2
unicode(0) ""
unicode(8) "stdClass"
unicode(1) "C"
unicode(16) "ReflectionObject"