用PHP读取CSV文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用PHP读取CSV文件相关的知识,希望对你有一定的参考价值。
this script splits the csv file two times (1. on "new line", 2. on ";") and returns a two dem array in the last for loop.
<?php /* your CSV should look like this: data1;data2;data3; data1;data2124;data3; data1;data2564;data3; data1;data2321;data3; */ $a = 0; foreach ($fileArrN as $value){ $a++; } $output = null; $output .= $fileArrSemi[$i][1]."<br /> "; } echo $output; ?>
以上是关于用PHP读取CSV文件的主要内容,如果未能解决你的问题,请参考以下文章