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:             Closed
+Status:             Feedback
 Type:               Bug
 Package:            SNMP related
 Operating System:   *
 PHP Version:        5.4.3
 Assigned To:        lytboris
 Block user comment: N
 Private report:     N

 New Comment:

Please try using this snapshot:

  http://snaps.php.net/php5.4-latest.tar.gz
 
For Windows:

  http://windows.php.net/snapshots/




Previous Comments:
------------------------------------------------------------------------
[2013-03-17 16:53:58] [email protected]

Automatic comment on behalf of lytboris
Revision: 
http://git.php.net/?p=php-src.git;a=commit;h=b32405053f5a32d8c4d83f7566f5b414afd3aedb
Log: Fix bug #61981

------------------------------------------------------------------------
[2013-03-17 16:53:57] [email protected]

Automatic comment on behalf of lytboris
Revision: 
http://git.php.net/?p=php-src.git;a=commit;h=44197774c02506be626c85ec60889b58c6c0575e
Log: Fixed bug #61981

------------------------------------------------------------------------
[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

Reply via email to