php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #48736 ReflectionMethod::getParemeters() does not return parameters of memcache::set()
Submitted: 2009-06-30 12:25 UTC Modified: 2009-06-30 13:26 UTC
From: fhardy at noparking dot net Assigned:
Status: Not a bug Package: Reflection related
PHP Version: 5.2.10 OS: freeBSD 7.1
Private report: No CVE-ID: None
 [2009-06-30 12:25 UTC] fhardy at noparking dot net
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'

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2009-06-30 13:26 UTC] bjori@php.net
memcache does not expose these argument information.

Please refile this as a bug against the extension on pecl.php.net
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 08:01:28 2024 UTC