Edit report at https://bugs.php.net/bug.php?id=61981&edit=1
ID: 61981 Updated by: [email protected] Reported by: gubin dot gm at yandex dot ru Summary: OO API, walk: $suffix_as_key is not working correctly -Status: Assigned +Status: Closed Type: Bug Package: SNMP related Operating System: * PHP Version: 5.4.3 Assigned To: lytboris Block user comment: N Private report: N New Comment: Automatic comment on behalf of lytboris Revision: http://git.php.net/?p=php-src.git;a=commit;h=44197774c02506be626c85ec60889b58c6c0575e Log: Fixed bug #61981 Previous Comments: ------------------------------------------------------------------------ [2012-05-09 11:10:56] gubin dot gm at yandex dot ru Description: ------------ Bag in method SNMP::walk. The parameter $suffix_as_key not working correctly. Test script: --------------- <?php $session = new SNMP(SNMP::VERSION_2c, "127.0.0.1", "public"); $ifDescr = $session->walk(".1.3.6.1.2.1.2.2.1.2", TRUE); print_r($ifDescr); ?> Expected result: ---------------- Array ( [1001] => Port 1:1 [1002] => Port 1:2 [1003] => Port 1:3 ... ) Actual result: -------------- Array ( [1001] => Port 1:1 [iso.3.6.1.2.1.2.2.1.2.1002] => Port 1:2 [iso.3.6.1.2.1.2.2.1.2.1003] => Port 1:3 ... ) ------------------------------------------------------------------------ -- Edit this bug report at https://bugs.php.net/bug.php?id=61981&edit=1
