ReflectionFunction_isDeprecated_basic.phpt 344 B

123456789101112131415
  1. --TEST--
  2. ReflectionFunction::isDeprecated
  3. --CREDITS--
  4. Stefan Koopmanschap <stefan@phpgg.nl>
  5. TestFest PHP|Tek
  6. --SKIPIF--
  7. <?php
  8. if (!extension_loaded('reflection') || !defined('PHP_VERSION_ID') || PHP_VERSION_ID < 50300) print 'skip';
  9. ?>
  10. --FILE--
  11. <?php
  12. $rc = new ReflectionFunction('ereg');
  13. var_dump($rc->isDeprecated());
  14. --EXPECTF--
  15. bool(true)