|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-05-27 17:46 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 04:00:02 2025 UTC |
Description: ------------ ReflectionParameter getName returns null for SoapClient object. Happend on 5.2.0 too. Reproduce code: --------------- $objRfClass = new ReflectionClass('SoapClient'); $objRfMethod = $objRfClass->getMethod('__soapCall'); $arrParams = $objRfMethod->getParameters(); foreach($arrParams as $objRfParam) { var_dump($objRfParam->getName()); } Expected result: ---------------- Param names? Actual result: -------------- NULL NULL NULL NULL NULL