mirror of
https://github.com/php/php-src.git
synced 2026-04-29 03:03:26 +02:00
a375d54785
Cf. PR #6787. Closes GH-6994.
13 lines
227 B
PHP
13 lines
227 B
PHP
--TEST--
|
|
(Bug #74031) ReflectionFunction for imagepng returns wrong number of parameters
|
|
--EXTENSIONS--
|
|
gd
|
|
--FILE--
|
|
<?php
|
|
|
|
$ref = new ReflectionFunction('imagepng');
|
|
var_dump(count($ref->getParameters()));
|
|
?>
|
|
--EXPECT--
|
|
int(4)
|