I'm working with SNMP results and a bunch of the tables that come back don't have simple numeric indexes, they have MIB/OID references:
Array
(
[IF-MIB::ifAlias.1] => description 1
[IF-MIB::ifAlias.2] => description 2
[IF-MIB::ifAlias.3] => description 3
[IF-MIB::ifAlias.4] => description 4
...
)
..now I already have a function using array_walk_recursive to strip all the value types from the element values but I'm seeing no way to easily strip the key names to just their numbers
again, I'm sure a loop could do this, but if there's a function for values, I'd hope there's be one for keys
thanks