Excel 到 MySQL 使用 PHP 导入到单个列中

Excel to MySQL using PHP imports into a single column

我正在尝试使用 php 将 excel 文件上传到我的 mysql 数据库,但我有两个问题:第一个,我得到一个 "Notice: Undefined offset:" 对 .csv 文件的每一行发出警告,第二个问题是,它将 .csv 文件的所有三列导入到数据库中的一个列中。

我的代码如下:

<?php 
if(isset($_POST["Import"]))
{

    $conexion=mysql_connect("localhost","root","") or die("Problemas en la conexion");
    mysql_select_db("kontor",$conexion) or die("Problemas en la seleccion de la base de datos");

    echo $filename=$_FILES["file"]["tmp_name"];
    if($_FILES["file"]["size"] > 0)
    {
        $file = fopen($filename, "r");
        $count = 0; 
        while (($emapData = fgetcsv($file, 10000, ",")) !== FALSE)
        {
            $count++; 
            if($count>1){  
            mysql_query("INSERT into stock (nombre,prneto,descr) values ('$emapData[0]','$emapData[1]','$emapData[2]')", $conexion) 
or die("Problemas en el select".mysql_error());

            }       
        }
        fclose($file);
        echo 'Archivo importado';
        //header('Location: index.php');
    }
    else
        echo 'Formato de archivo incorrecto';
}
?>

Excel 通常不喜欢始终如一地引用 CSV 列值;它仅在认为有必要时才这样做(至少对于 excel 的某些版本)。出于这个原因,我通常不建议使用 Excel 生成的 CSV,而选择只使用 PHPExcel

以其原始格式读取 excel 文件
// this is the older version of excel for .xls
// if the file is xlsx you would use PHPExcel_Reader_Excel2007()
$objReader = new PHPExcel_Reader_Excel5(); 

$objPHPExcel = $objReader->load($_FILES["file"]["tmp_name"]);
$sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,true,true);

// you should also be using PDO or mysqli for your db interactions
// NOT mysql - this example will use pdo

$db = new PDO($dsn, $user, $pass, array(
   PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION
));



try {
  // presumebaly you want this operation to be atomic
  // ie. if any one row fails don't insert any of the rows
  // so we will use a transaction
  $db->beginTransaction();

  // prepare the query
  $stmt = $db->prepare('INSERT into stock (nombre,prneto,descr) values (?,?,?)');

 foreach ($sheetData as $row) {
    // execute the insert for a row of csv
    $stmt->execute(array_values($row));  
 }

 // attempt to commit the transaction
 $db->commit();


} catch (Exception $e) {
   // we had an error somewhere, roll back the transaction
   $db->rollBack();

   // retrhow the error
   throw $e;
}

看看 csv 文件...使用什么分隔符和附件?

Excel 经常使用 ;和 " 用于分隔符和外壳。

大多数情况下,其中一个就可以完成工作:

while (($emapData = fgetcsv($file, 10000, ";", '"')) !== FALSE)

// or

while (($emapData = fgetcsv($file, 10000, ",", '"')) !== FALSE)