ReflectionProperty_isDefault_basic.phpt 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. --TEST--
  2. Test ReflectionProperty::isDefault() usage.
  3. --FILE--
  4. <?php
  5. function reflectProperty($class, $property) {
  6. $propInfo = new ReflectionProperty($class, $property);
  7. echo "**********************************\n";
  8. echo "Reflecting on property $class::$property\n\n";
  9. echo "isDefault():\n";
  10. var_dump($propInfo->isDefault());
  11. echo "\n**********************************\n";
  12. }
  13. class TestClass {
  14. public $pub;
  15. static public $stat = "static property";
  16. protected $prot = 4;
  17. private $priv = "keepOut";
  18. }
  19. reflectProperty("TestClass", "pub");
  20. reflectProperty("TestClass", "stat");
  21. reflectProperty("TestClass", "prot");
  22. reflectProperty("TestClass", "priv");
  23. echo "Wrong number of params:\n";
  24. $propInfo = new ReflectionProperty('TestClass', 'pub');
  25. $propInfo->isDefault(1);
  26. ?>
  27. --EXPECTF--
  28. **********************************
  29. Reflecting on property TestClass::pub
  30. isDefault():
  31. bool(true)
  32. **********************************
  33. **********************************
  34. Reflecting on property TestClass::stat
  35. isDefault():
  36. bool(true)
  37. **********************************
  38. **********************************
  39. Reflecting on property TestClass::prot
  40. isDefault():
  41. bool(true)
  42. **********************************
  43. **********************************
  44. Reflecting on property TestClass::priv
  45. isDefault():
  46. bool(true)
  47. **********************************
  48. Wrong number of params:
  49. Warning: ReflectionProperty::isDefault() expects exactly 0 parameters, 1 given in %s on line %d