internal_static_property.phpt 245 B

1234567891011121314
  1. --TEST--
  2. ReflectionProperty::get/setValue() on internal static property
  3. --EXTENSIONS--
  4. zend_test
  5. --FILE--
  6. <?php
  7. $rp = new ReflectionProperty('_ZendTestClass', '_StaticProp');
  8. $rp->setValue(42);
  9. var_dump($rp->getValue());
  10. ?>
  11. --EXPECT--
  12. int(42)