359025439 发表于 2017-3-21 12:47:48

php分析tsv文件

tsv跟csv很像,不过csv是以,分格数据,tsv是以tab分格。
php分析tsv数据:

$path = "D:\\test.tsv";
if(file_exists($path))
{
$fp = fopen($path,'r');
while (!feof($fp)) {
$str = fgets($fp);
$pieces = explode("\t", $str);
var_dump($pieces);
}
}
else
{
echo "file not exists.";
}
页: [1]
查看完整版本: php分析tsv文件