|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patchesimagepng-reflection-parameters (last revision 2017-02-02 09:17 UTC by finwe at finwe dot info)Pull RequestsHistoryAllCommentsChangesGit/SVN commits
[2017-02-02 17:15 UTC] nikic@php.net
[2017-02-02 17:15 UTC] nikic@php.net
-Status: Open
+Status: Closed
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 22:00:01 2025 UTC |
Description: ------------ ReflectionFunction for imagepng is missing last two parameters available since PHP 5.1.2 and 5.1.3 respectively, quality and filters. PHP Version 7.1.1 GD library Version 2.2.3 Test script: --------------- $ref = new ReflectionFunction('imagepng'); var_dump(count($ref->getParameters())); Expected result: ---------------- int(4) Actual result: -------------- int(2)