File:
[ELWIX - Embedded LightWeight unIX -] /
embedaddon /
php /
ext /
reflection /
tests /
ReflectionProperty_isDefault_basic.phpt
Revision
1.1.1.1 (vendor branch):
download - view:
text,
annotated -
select for diffs -
revision graph
Tue Feb 21 23:48:00 2012 UTC (13 years, 1 month ago) by
misho
Branches:
php,
MAIN
CVS tags:
v5_4_3elwix,
v5_4_29p0,
v5_4_29,
v5_4_20p0,
v5_4_20,
v5_4_17p0,
v5_4_17,
v5_3_10,
HEAD
php
--TEST--
Test ReflectionProperty::isDefault() usage.
--FILE--
<?php
function reflectProperty($class, $property) {
$propInfo = new ReflectionProperty($class, $property);
echo "**********************************\n";
echo "Reflecting on property $class::$property\n\n";
echo "isDefault():\n";
var_dump($propInfo->isDefault());
echo "\n**********************************\n";
}
class TestClass {
public $pub;
static public $stat = "static property";
protected $prot = 4;
private $priv = "keepOut";
}
reflectProperty("TestClass", "pub");
reflectProperty("TestClass", "stat");
reflectProperty("TestClass", "prot");
reflectProperty("TestClass", "priv");
echo "Wrong number of params:\n";
$propInfo = new ReflectionProperty('TestClass', 'pub');
$propInfo->isDefault(1);
?>
--EXPECTF--
**********************************
Reflecting on property TestClass::pub
isDefault():
bool(true)
**********************************
**********************************
Reflecting on property TestClass::stat
isDefault():
bool(true)
**********************************
**********************************
Reflecting on property TestClass::prot
isDefault():
bool(true)
**********************************
**********************************
Reflecting on property TestClass::priv
isDefault():
bool(true)
**********************************
Wrong number of params:
Warning: ReflectionProperty::isDefault() expects exactly 0 parameters, 1 given in %s on line %d
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>