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/ReflectionClass_getName_basic.phpt
2009-04-08 16:08:58 +00:00

26 lines
455 B
PHP

--TEST--
ReflectionClass::getName()
--FILE--
<?php
class TrickClass {
function __toString() {
//Return the name of another class
return "Exception";
}
}
$r1 = new ReflectionClass("stdClass");
$myInstance = new stdClass;
$r2 = new ReflectionClass($myInstance);
$r3 = new ReflectionClass("TrickClass");
var_dump($r1->getName(), $r2->getName(), $r3->getName());
?>
--EXPECTF--
unicode(8) "stdClass"
unicode(8) "stdClass"
unicode(10) "TrickClass"