Home  >  Article  >  Backend Development  >  CSV文件内容上传数据库,该怎么处理

CSV文件内容上传数据库,该怎么处理

WBOY
WBOYOriginal
2016-06-13 13:32:08728browse

CSV文件内容上传数据库
我有许多CSV格式的数据需要上传到MYSQL

但是前面大概20多行,无用数据,如何删除前面的数据,把剩下有用的上传,请各位大侠帮忙给个 思路或者CODE?

----------
如果不同结构的CSV该如何处理?有现成的类吗?
比如:
a.csv

标题1 标题2 标题3
1 2 3


b.csv

name sex age
.. .. ...

===============================

本人菜鸟,谢谢大家帮忙!



------解决方案--------------------
这是一个例子,你可以参考一下:

PHP code
$arr=file("aa.csv");
file_put_contents('aa.csv',join("",array_slice($arr,20)));

mysql_connect('localhost',"root",'');
$sql="load data infile '绝对路径/aa.csv' into table test.csv fields terminated by ','";  //库名:test,表名:csv
mysql_query($sql) or die(mysql_error());
<br><font color="#e78608">------解决方案--------------------</font><br>
探讨

我的意思是能不能PHP删除前面N行数据。请指点!
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn