我是php的新手。我非常感谢这里的所有帮助。
我正在使用sftp登录服务器并获取文件。我只对该文件的最后一行感兴趣。标签分隔的最后一行。我想将15,16,19和20,以及第21个col值存储到5个不同的变量中。最后一行看起来像这样:
7 1 0 59422170 306669 20188 20386 0 0 39787 59981 2014 67796 48953 2 7 90 1 1.81 11.3 12:19:50
当我发出这个cCurl命令获取文件时,我如何读取该文件中的最后一行并解析出最后一行中的某些列?
<?php
$user="user";
$pass="pass";
$c = curl_init("sftp://$user:$pass@server1/vmstat");
curl_setopt($c, CURLOPT_PROTOCOLS, CURLPROTO_SFTP);
curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
$data = curl_exec($c);
curl_close($c);
#echo $data;
?>
答案 0 :(得分:1)
$data = explode("\n", $data);
$last_line = end($data);
$parts = explode("\t", $last_line);
答案 1 :(得分:0)
为什么要使用php?
使用输入文件:
7 1 0 59422170 306669 20188 20386 0 0 39787 59981 2014 67796 48953 2 7 90 1 1.81 11.3 12:19:50
和命令行:
tail -n1 myfile | sed 's/\s\s*/ /g' | cut -d' ' -f15,16,19,20,21
结果是:
2 7 1.81 11.3 12:19:50
答案 2 :(得分:0)
如果文件很小,可能会有点矫枉过正,但不久前写了this function。返回文件/流的最后n行。
function tail($file, $lines = 10, $buffer = 4096)
{
if(is_resource($file) && (get_resource_type($file) == 'file' || get_resource_type($file) == 'stream'))
$f = $file;
elseif(is_string($file))
$f = fopen($file, 'rb');
else
throw new Exception('$file must be either a resource (file or stream) or a filename.');
$output = '';
$chunk = '';
fseek($f, -1, SEEK_END);
if(fread($f, 1) != "\n")
$lines -= 1;
while(ftell($f) > 0 && $lines >= 0)
{
$seek = min(ftell($f), $buffer);
fseek($f, -$seek, SEEK_CUR);
$output = ($chunk = fread($f, $seek)).$output;
fseek($f, -mb_strlen($chunk, '8bit'), SEEK_CUR);
$lines -= substr_count($chunk, "\n");
}
while($lines++ < 0)
$output = substr($output, strpos($output, "\n")+1);
fclose($f);
return $output;
}
如果制表符分开,只需进行拆分并指定您想要变量的内容。
$columns = explode("\t",$line);
$foo = $columns[15];
...