php-src/ext/reflection/tests/bug37816.phpt
2020-07-10 21:05:28 +02:00

27 lines
398 B
PHP

--TEST--
Bug #37816 (ReflectionProperty does not throw exception when accessing protected attribute)
--FILE--
<?php
class TestClass
{
protected $p = 2;
}
$o = new TestClass;
$r = new ReflectionProperty($o, 'p');
try
{
$x = $r->getValue($o);
}
catch (Exception $e)
{
echo 'Caught: ' . $e->getMessage() . "\n";
}
?>
--EXPECT--
Caught: Cannot access non-public property TestClass::$p