ReflectionProperty_export_basic.phpt 231 B

12345678910111213141516
  1. --TEST--
  2. Test ReflectionProperty::export() usage.
  3. --FILE--
  4. <?php
  5. class TestClass {
  6. public $proper = 5;
  7. }
  8. var_dump(ReflectionProperty::export('TestClass', 'proper'));
  9. ?>
  10. --EXPECT--
  11. Property [ <default> public $proper ]
  12. NULL