bug74031.phpt 227 B

123456789101112
  1. --TEST--
  2. (Bug #74031) ReflectionFunction for imagepng returns wrong number of parameters
  3. --EXTENSIONS--
  4. gd
  5. --FILE--
  6. <?php
  7. $ref = new ReflectionFunction('imagepng');
  8. var_dump(count($ref->getParameters()));
  9. ?>
  10. --EXPECT--
  11. int(4)