1
0
mirror of https://github.com/php/php-src.git synced 2026-04-18 05:21:02 +02:00
Files
archived-php-src/ext/reflection/tests/internal_static_property.phpt
2021-11-15 10:45:25 +01:00

15 lines
245 B
PHP

--TEST--
ReflectionProperty::get/setValue() on internal static property
--EXTENSIONS--
zend_test
--FILE--
<?php
$rp = new ReflectionProperty('_ZendTestClass', '_StaticProp');
$rp->setValue(42);
var_dump($rp->getValue());
?>
--EXPECT--
int(42)