gpt4 book ai didi

php - 从未知路径读取 CSV 文件,php

转载 作者:行者123 更新时间:2023-11-30 22:24:01 25 4
gpt4 key购买 nike

我有一个需要将 CSV 导入 mysql 的 php 应用程序。但是我只有在路径在代码中时才能导入。但我不希望那样。我不知道我的客户是否有 .CSV 文件。你能帮助我吗?这是我的代码:

<form enctype='multipart/form-data' action="" method='post'onSubmit='getPath();'>
<input type="file" name="file" />
<input type='submit' name='submit' value='Importar'/>
</form>

<?php

$conexao = mysql_connect ("localhost", "root", "") or die (mysql_error());
$bd = mysql_select_db ("wcfleet_demo");

if (isset ($_POST['submit']))
{


$file = $_FILES ['file'] ['name'];

$filepath="C:\\xampp\htdocs\wecreatefleet\\";
$msg = $filepath."".$file; //bind
$handle = fopen ($msg, "r");
$i= 0;

//$caminho = "C:\\xampp\htdocs\wecreatefleet\\teste.csv";
//$abraArq = fopen ($caminho, "r");

if (!$handle)
{
echo ("<p> Arquivo não encontrado! </p>");
}
else
{
while (($valores = fgetcsv ($handle, 100000, ";"))!== false)
{
$lines = file($msg);

if($i>=8)
{
$line = explode (';', $lines[$i]);
$sql = "INSERT INTO via_verde (identificador, matricula, referencia, data_entrada, hora_entrada, entrada, data_saida,
hora_saida, saida, valor, valor_desconto, taxa_iva, operador, servico, data_pagamento, cartao_n)
VALUES ('$line[0]', '$line[1]', '$line[2]', '$line[3]', '$line[4]', '$line[5]', '$line[6]', '$line[7]',
'$line[8]', '$line[9]', '$line[10]', '$line[11]', '$line[12]', '$line[13]', '$line[14]', '$line[15]')";
mysql_query ($sql) or die (mysql_error());
}
$i++;
}
fclose ($handle);
mysql_close($conexao);
echo "Processo finalizado.";
}
}

最佳答案

您应该可以使用上传文件的文件路径作为 fopen 的来源 - $_FILES['file']['tmp_name'] 像这样- 虽然它没有经过测试。除非您还需要保存上传的 csv 文件,否则甚至不需要像通常使用文件上传那样使用 move_uploaded_file

强制性的“不要使用 mysql_* 函数”——它们已被弃用并且不提供针对 sql 注入(inject)的保护。最好使用 mysqliPDO 以便您可以利用 prepared statements

<?php
/* logic tests to ensure there is data present */
if( isset( $_POST['submit'], $_FILES['file'] ) ) {

/* assign the tmp_name of the uploaded file to a variable */
$tmp = $_FILES['file']['tmp_name'];
/* open a file handle on the temp file */
$handle = fopen( $tmp, "r" );
$i=0;

if ( !$handle ) {
echo "<p> Arquivo não encontrado! </p>";
} else {
/* only open db connection if there are no problems */
$conexao = mysql_connect ("localhost", "root", "") or die ( mysql_error() );
$bd = mysql_select_db ("wcfleet_demo");

while ( $valores = fgetcsv( $handle, 100000, ";" )!== false ) {
$lines = file( $msg );

if( $i >= 8 ) {
$line = explode ( ';', $lines[$i]);
$sql = "INSERT INTO via_verde (identificador, matricula, referencia, data_entrada, hora_entrada, entrada, data_saida,
hora_saida, saida, valor, valor_desconto, taxa_iva, operador, servico, data_pagamento, cartao_n)
VALUES ('$line[0]', '$line[1]', '$line[2]', '$line[3]', '$line[4]', '$line[5]', '$line[6]', '$line[7]',
'$line[8]', '$line[9]', '$line[10]', '$line[11]', '$line[12]', '$line[13]', '$line[14]', '$line[15]')";
mysql_query( $sql ) or die ( mysql_error() );
}
$i++;
}
fclose( $handle );
mysql_close( $conexao );
/* delete the temp file */
@unlink( $tmp );

echo "Processo finalizado.";
}
}
?>

关于php - 从未知路径读取 CSV 文件,php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35841470/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com