2012-04-04 36 views
-1

感谢帮助!如何制作将逗号分隔的文本文件.csv转换为mysql数据库字段的脚本?

好吧...所以我想写一个脚本,将采取.csv文件的内容并将它们导入到mySQL数据库中的单个表中。我希望脚本为.csv文件中的每个列/标题在该表中创建字段。

我的.csv数据看起来像这样(我只包括了前两行):

<?php 
    "PROGRAMNAME","PROGRAMURL","CATALOGNAME","LASTUPDATED","NAME","KEYWORDS","DESCRIPTION","SKU","MANUFACTURER","MANUFACTURERID","UPC","ISBN","CURRENCY","SALEPRICE","PRICE","RETAILPRICE","FROMPRICE","BUYURL","IMPRESSIONURL","IMAGEURL","ADVERTISERCATEGORY","THIRDPARTYID","THIRDPARTYCATEGORY","AUTHOR","ARTIST","TITLE","PUBLISHER","LABEL","FORMAT","SPECIAL","GIFT","PROMOTIONALTEXT","STARTDATE","ENDDATE","OFFLINE","ONLINE","INSTOCK","CONDITION","WARRANTY","STANDARDSHIPPINGCOST" 
    "TeesforAll.com & WearYourBeer.com","http://www.teesforall.com, http://www.wearyourbeer.com","Product Catalog","10/01/2012","Karate Kid Cobra Kai All Valley '84 Gold Graphic T-Shirt","Karate Kid","Officially licensed Karate Kid Cobra Kai All Valley '84 Gold T-Shirt. Features the Cobra Kai circle logo with '84 on the front. 100% cotton.","ey_84_Gold_Graphic_TShirt-p-2778.html","Karate Kid","","","","USD","","12.99","","","http://www.jdoqocy.com/click-4110789-10569779?url=http%3A%2F%2Fwww.teesforall.com%2FKarate_Kid_Cobra_Kai_All_Valley_84_Gold_Graphic_TShirt-p-2778.html","http://www.ftjcfx.com/image-4110789-10569779","http://www.teesforall.com/images/Karate_Kid_Cobra_Kai_Gold_Shirt.jpg","Mens - Shirts","","","","","","","","","","","","","","","","YES","","","" 

所以我想我会用这样的:

$source_file = "catalogs/tees4all.txt"; 
$handle = fopen("catalogs/tees4all.txt", "r"); 

while (($data = fgetcsv($handle)) !== FALSE) { 
    var_dump($data); 
} 

的$数据输出的var_dump这......基本上每一行都是一个阵列:

array(40) { [0]=> string(11) "PROGRAMNAME" [1]=> string(10) "PROGRAMURL" [2]=> string(11) "CATALOGNAME" [3]=> string(11) "LASTUPDATED" [4]=> string(4) "NAME" [5]=> string(8) "KEYWORDS" [6]=> string(11) "DESCRIPTION" [7]=> string(3) "SKU" [8]=> string(12) "MANUFACTURER" [9]=> string(14) "MANUFACTURERID" [10]=> string(3) "UPC" [11]=> string(4) "ISBN" [12]=> string(8) "CURRENCY" [13]=> string(9) "SALEPRICE" [14]=> string(5) "PRICE" [15]=> string(11) "RETAILPRICE" [16]=> string(9) "FROMPRICE" [17]=> string(6) "BUYURL" [18]=> string(13) "IMPRESSIONURL" [19]=> string(8) "IMAGEURL" [20]=> string(18) "ADVERTISERCATEGORY" [21]=> string(12) "THIRDPARTYID" [22]=> string(18) "THIRDPARTYCATEGORY" [23]=> string(6) "AUTHOR" [24]=> string(6) "ARTIST" [25]=> string(5) "TITLE" [26]=> string(9) "PUBLISHER" [27]=> string(5) "LABEL" [28]=> string(6) "FORMAT" [29]=> string(7) "SPECIAL" [30]=> string(4) "GIFT" [31]=> string(15) "PROMOTIONALTEXT" [32]=> string(9) "STARTDATE" [33]=> string(7) "ENDDATE" [34]=> string(7) "OFFLINE" [35]=> string(6) "ONLINE" [36]=> string(7) "INSTOCK" [37]=> string(9) "CONDITION" [38]=> string(8) "WARRANTY" [39]=> string(20) "STANDARDSHIPPINGCOST" } 


array(40) { [0]=> string(33) "TeesforAll.com & WearYourBeer.com" [1]=> string(54) "http://www.teesforall.com, http://www.wearyourbeer.com" [2]=> string(15) "Product Catalog" [3]=> string(10) "10/01/2012" [4]=> string(56) "Karate Kid Cobra Kai All Valley '84 Gold Graphic T-Shirt" [5]=> string(10) "Karate Kid" [6]=> string(142) "Officially licensed Karate Kid Cobra Kai All Valley '84 Gold T-Shirt. Features the Cobra Kai circle logo with '84 on the front. 100% cotton." [7]=> string(37) "ey_84_Gold_Graphic_TShirt-p-2778.html" [8]=> string(10) "Karate Kid" [9]=> string(0) "" [10]=> string(0) "" [11]=> string(0) "" [12]=> string(3) "USD" [13]=> string(0) "" [14]=> string(5) "12.99" [15]=> string(0) "" [16]=> string(0) "" [17]=> string(150) "http://www.jdoqocy.com/click-4110789-10569779?url=http%3A%2F%2Fwww.teesforall.com%2FKarate_Kid_Cobra_Kai_All_Valley_84_Gold_Graphic_TShirt-p-2778.html" [18]=> string(44) "http://www.ftjcfx.com/image-4110789-10569779" [19]=> string(68) "http://www.teesforall.com/images/Karate_Kid_Cobra_Kai_Gold_Shirt.jpg" [20]=> string(13) "Mens - Shirts" [21]=> string(0) "" [22]=> string(0) "" [23]=> string(0) "" [24]=> string(0) "" [25]=> string(0) "" [26]=> string(0) "" [27]=> string(0) "" [28]=> string(0) "" [29]=> string(0) "" [30]=> string(0) "" [31]=> string(0) "" [32]=> string(0) "" [33]=> string(0) "" [34]=> string(0) "" [35]=> string(0) "" [36]=> string(3) "YES" [37]=> string(0) "" [38]=> string(0) "" [39]=> string(0) "" } 

我希望有人能帮我从$ data中获取到一个数据库表,其中列和行匹配...与CSV的标题和行!

谢谢!

+1

如何有关格式化。 – 2012-04-04 01:31:34

+0

LOAD DATA INFILE:http://dev.mysql.com/doc/refman/5.1/en/load-data.html – 2012-04-04 01:39:04

+0

它被称为[phpMyAdmin](http://www.phpmyadmin.net/home_page/index.php ) – hohner 2012-04-04 01:43:04

回答

1

如果你想用php做这个,试试这个。

<? 

$source_file = "catalogs/tees4all.txt"; 
$handle = fopen("catalogs/tees4all.txt", "r"); 

$col_names = implode(",", fgetcsv($handle)); // Getting comma separated list of col names 

$link = mysql_connect('localhost', 'mysql_user', 'mysql_password'); 
mysql_select_db("yourdbhere"); 
while (($data = fgetcsv($handle)) !== FALSE) { 
    $values = ""; 
    foreach($data as $key => $value) { 
     if ($key != 0) $values .= ", "; 
     $values .= "'".mysql_escape_string($value)."'"; 
    } 
    mysql_query('INSERT INTO yourtablehere ('.$col_names.') VALUES ('.$values.')'); 
} 

或者只是使用http://dev.mysql.com/doc/refman/5.1/en/load-data.html

+0

感谢您的快速回复...我一直在玩你的两个建议...但是我没有很好的运气: -/ 在PHP方面...我得到一个白页...没有错误....没有数据进入数据库...但是,我在joomla工作,事情有点“不同” 所以...我真的希望我能弄明白像你所建议的SQL ...我只是试图将数据存入数据库... 所以......我该怎么做呢?在phpmyadmin中运行它?也许你可以解释变量应该是什么? :) – DigitalMediaGuy 2012-04-04 03:51:19

+0

加载数据[LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE'file_name' [REPLACE | IGNORE] INTO TABLE tbl_name [CHARACTER SET charset_name] [{FIELDS | COLUMNS} [TERMINATED BY '字串'] [[可选] ENCLOSED BY '字符'] [ESCAPED BY '字符'] ] [LINES [STARTING BY '字串'] [TERMINATED BY '字串'] ] [IGNORE number LINES] [(col_name_or_user_var,...)] [SET col_name = expr,...] – DigitalMediaGuy 2012-04-04 03:51:40

+0

cvs文件中列的名称应该与MySQL中列的名称匹配表。也看看更新的例子。 “$值。”应该是'。$ values'。 – 2012-04-04 04:02:36

相关问题