0

为什么我仍然无法除法,如果我这样做了,我得到一个 0。

  exec("snmpget -v 2c -c public $host $oid | cut -d':' -f4 | sed -e 's/^[ ]*//'", $state);

print_r($state);
$seconds=86400;
$current_state=implode($state);
print($current_state);
$div=($current_state/86400);
print($div);
4

1 回答 1

1

implode可以采用两个参数。

字符串内爆(字符串 $glue ,数组 $pieces )

于 2013-02-05T20:43:44.353 回答