php-8.0.30-src/ext/reflection/tests/internal_static_property.phpt

17 lines
319 B
PHP

--TEST--
ReflectionProperty::get/setValue() on internal static property
--SKIPIF--
<?php
if (!class_exists('_ZendTestClass')) die('skip zend_test extension required');
?>
--FILE--
<?php
$rp = new ReflectionProperty('_ZendTestClass', '_StaticProp');
$rp->setValue(42);
var_dump($rp->getValue());
?>
--EXPECT--
int(42)