该文件包含 3 列(制表符分隔)和 10 行。如何从数组 $lines 中获取 [column][row]?目前这个数组包含 10 行。
$handle = @fopen('results.txt', "r");
if ($handle) {
while (!feof($handle)) {
$lines[] = fgets($handle, 4096);
}
fclose($handle);
}
for($i=0; $i<count($lines); $i++)
{
echo $lines[$i];
}