2012-04-04 39 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

相關問題