ReflectionZendExtension_error.phpt 323 B

1234567891011121314151617
  1. --TEST--
  2. Test ReflectionZendExtension class errors
  3. --CREDITS--
  4. Gabriel Caruso (carusogabriel34@gmail.com)
  5. --EXTENSIONS--
  6. opcache
  7. --FILE--
  8. <?php
  9. try {
  10. new ReflectionZendExtension('zend_opcache');
  11. } catch (ReflectionException $e) {
  12. echo $e->getMessage();
  13. }
  14. ?>
  15. --EXPECT--
  16. Zend Extension "zend_opcache" does not exist