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