php-src/ext/reflection/tests/020.phpt
2008-05-27 13:16:27 +00:00

29 lines
505 B
PHP
Executable File

--TEST--
ReflectionObject::hasProperty
--SKIPIF--
<?php extension_loaded('reflection') or die('skip'); ?>
--FILE--
<?php
class Foo {
public $p1;
protected $p2;
private $p3;
function __isset($name) {
var_dump($name);
return false;
}
}
$obj = new ReflectionObject(new Foo());
var_dump($obj->hasProperty("p1"));
var_dump($obj->hasProperty("p2"));
var_dump($obj->hasProperty("p3"));
var_dump($obj->hasProperty("p4"));
?>
--EXPECT--
bool(true)
bool(true)
bool(true)
unicode(2) "p4"
bool(false)