php csv

http://www.w3school.com.cn/php/func_filesystem_fgetcsv.asp

例子 1
<?php

$file = fopen("contacts.csv","r");
print_r(fgetcsv($file));
fclose($file);

?>
CSV 文件:
George, John, Thomas, USA
James, Adrew, Martin, USA
输出类似:
Array 

[0] => George
[1] => John 
[2] => Thomas
[3] => USA
)
例子 2
<?php

$file = fopen("contacts.csv","r");

while(! feof($file))
  {
  print_r(fgetcsv($file));
  }

fclose($file);

?> 
CSV 文件:
George, John, Thomas, USA
James, Adrew, Martin, USA
输出类似:
Array 

[0] => George
[1] => John 
[2] => Thomas
[3] => USA

Array
(
[0] => James
[1] => Adrew
[2] => Martin
[3] => USA
)

    A+
发布日期:2017年12月15日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: