时间:2021-07-01 10:21:17 帮助过:17人阅读
test.php页面
$pipe_mode="rb";
read_config_option("path_rrdtool") 为rrdtool可执行文件。
$fp = popen(read_config_option("path_rrdtool") . escape_command(" $command_line"), $pipe_mode);
if (isset($fp) && is_resource($fp)) {
$line = "";
while (!feof($fp)) {
$line =$line . fgets($fp, 4096);
}
pclose($fp);
return $line;
}
print $line;
然后把 test.php放到 img src中:img src="test.php?......"