014.phpt 197 B

12345678910
  1. --TEST--
  2. ReflectionExtension::getConstants()
  3. --FILE--
  4. <?php
  5. $ext = new ReflectionExtension("standard");
  6. $consts = $ext->getConstants();
  7. var_dump($consts["CONNECTION_NORMAL"]);
  8. ?>
  9. --EXPECT--
  10. int(0)