File "log_view2.php"
Full path: /www/beacon/log_view2.php
File size: 318 B
MIME-type: text/x-php
Charset: utf-8
<?php
$output=null;
$retval=null;
exec('cat /www/beacon/data/data.txt', $output, $retval);
//echo "Returned with status $retval and output:\n";
$ct = count($output);
//横軸の作成
for($ay = 0;$ay < $ct;$ay++)
{
$y_plus =$ay *$posi_base_y;
$i = $ct - $ay-1;
//データ表示
print $output[$i] ."<BR>";
}
?>