mirror of
https://github.com/php/php-src.git
synced 2026-04-19 22:11:12 +02:00
11 lines
209 B
PHP
11 lines
209 B
PHP
--TEST--
|
|
(Bug #74031) ReflectionFunction for imagepng returns wrong number of parameters
|
|
--FILE--
|
|
<?php
|
|
|
|
$ref = new ReflectionFunction('imagepng');
|
|
var_dump(count($ref->getParameters()));
|
|
?>
|
|
--EXPECT--
|
|
int(4)
|