mirror of
https://github.com/php/php-src.git
synced 2026-04-18 05:21:02 +02:00
15 lines
245 B
PHP
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)
|