|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-06-30 13:26 UTC] bjori@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 18:00:01 2025 UTC |
Description: ------------ ReflectionMethod::getParemeters() does not return parameters of memcache::set(). Reproduce code: --------------- $method = new reflectionMethod('memcache', 'set'); echo (sizeof($method->getParameters()) ? 'OK' : 'KO'); Expected result: ---------------- 'OK' Actual result: -------------- 'KO'