ReflectionFunction_isDeprecated_basic.phpt 278 B

12345678910111213
  1. --TEST--
  2. ReflectionFunction::isDeprecated
  3. --CREDITS--
  4. Stefan Koopmanschap <stefan@phpgg.nl>
  5. TestFest PHP|Tek
  6. --FILE--
  7. <?php
  8. // We currently don't have any deprecated functions :/
  9. $rc = new ReflectionFunction('var_dump');
  10. var_dump($rc->isDeprecated());
  11. ?>
  12. --EXPECT--
  13. bool(false)