1
0
mirror of https://github.com/php/php-src.git synced 2026-04-19 22:11:12 +02:00
Files
archived-php-src/ext/reflection/tests/006.phpt
Fabien Villepinte a555cc0b3d Clean DONE tags from tests
Remove most of the `===DONE===` tags and its variations.
Keep `===DONE===` if the test output otherwise becomes empty.

Closes GH-4872.
2019-11-07 21:31:47 +01:00

101 lines
1.9 KiB
PHP

--TEST--
ReflectionClass::[gs]etStaticPropertyValue
--FILE--
<?php
/* ReflectionClass cannot touch protected or private static properties */
/* ReflectionClass cannot create or delete static properties */
Class Test
{
static public $pub = 'pub';
static protected $pro = 'pro';
static private $pri = 'pri';
static function testing()
{
$ref = new ReflectionClass('Test');
foreach(array('pub', 'pro', 'pri') as $name)
{
try
{
var_dump($ref->getStaticPropertyValue($name));
var_dump($ref->getStaticPropertyValue($name));
$ref->setStaticPropertyValue($name, 'updated');
var_dump($ref->getStaticPropertyValue($name));
}
catch(Exception $e)
{
echo "EXCEPTION\n";
}
}
}
}
Class TestDerived extends Test
{
// static public $pub = 'pub';
// static protected $pro = 'pro';
static private $pri = 'pri';
static function testing()
{
$ref = new ReflectionClass('Test');
foreach(array('pub', 'pro', 'pri') as $name)
{
try
{
var_dump($ref->getStaticPropertyValue($name));
var_dump($ref->getStaticPropertyValue($name));
$ref->setStaticPropertyValue($name, 'updated');
var_dump($ref->getStaticPropertyValue($name));
}
catch(Exception $e)
{
echo "EXCEPTION\n";
}
}
}
}
$ref = new ReflectionClass('Test');
foreach(array('pub', 'pro', 'pri') as $name)
{
try
{
var_dump($ref->getStaticPropertyValue($name));
var_dump($ref->getStaticPropertyValue($name));
$ref->setStaticPropertyValue($name, 'updated');
var_dump($ref->getStaticPropertyValue($name));
}
catch(Exception $e)
{
echo "EXCEPTION\n";
}
}
Test::testing();
TestDerived::testing();
?>
--EXPECT--
string(3) "pub"
string(3) "pub"
string(7) "updated"
EXCEPTION
EXCEPTION
string(7) "updated"
string(7) "updated"
string(7) "updated"
EXCEPTION
EXCEPTION
string(7) "updated"
string(7) "updated"
string(7) "updated"
EXCEPTION
EXCEPTION