我有以下代码来读取ZabbixAPI中的项目名称:
try {
// connect to Zabbix-API
$api = new ZabbixApi($api_url, $username, $password);
$params = array( 'groupids' => '2 ',
'real_items' =>TRUE,
'monitored_items' =>TRUE,
'search' => array('name' => 'Disk root used p'),
'selectFunctions' => 'extend',
'output' => 'name',
'sortfield' => 'name',
'lastvalue' => 'value'
);
$items = $api->itemGet($params); // get data from api
echo serialize($items);
foreach($items as $item) { // loop through the returned data
echo "<td>".$item."</td>";
}
} catch(Exception $e) {
// Exception in ZabbixApi catched
echo $e->getMessage();
}
有了这个,我得到每个项目的输出:
stdClass Object ( [itemid] => 81351 [name] => Disk root used p )
但我只需要这个名字&#39; Item而不是json对象,因此输出只是一个类似的数组:itemname1, itemname2....
答案 0 :(得分:1)
您可以执行以下操作:
$names = array();
foreach($items as $item) { // loop through the returned data
$names[] = $item->name;
}
$ names数组将是项目名称数组。