上传到 php 服务器-6ren"> 上传到 php 服务器-我想使用 php 上传 excel 文件,并想在该 excel 文件中执行一些文件操作。我无法上传文件,如果有人有一些想法请帮助,在服务器端如何获取文件上传的路径? $target_dir = '上传-6ren">
gpt4 book ai didi

php - 如何将 excel 文件从 <input type ="file"> 上传到 php 服务器

转载 作者:可可西里 更新时间:2023-10-31 23:28:28 25 4
gpt4 key购买 nike

我想使用 php 上传 excel 文件,并想在该 excel 文件中执行一些文件操作。我无法上传文件,如果有人有一些想法请帮助,在服务器端如何获取文件上传的路径?

$target_dir = '上传/';不适合我。我的文件在 D 中:请帮忙。

PHP 代码:

 <?php    
if(isset($_POST['SubmitButton'])){ //check if form was submitted

$target_dir = 'uploads/';
$target_file = $target_dir . basename($_FILES["filepath"]["name"]);
$imageFileType = pathinfo($target_file,PATHINFO_EXTENSION);

require_once dirname(__FILE__) . '/Includes/Classes/PHPExcel/IOFactory.php';

$inputFileType = PHPExcel_IOFactory::identify($target_file);

$objReader = PHPExcel_IOFactory::createReader($inputFileType);
$objPHPExcel = $objReader->load($target_file);

$i=2;
$val=array();
$count=0;
for($i=2;$i<34;$i++)
{
$val[$count++]=$objPHPExcel->getActiveSheet()->getCell('C'.$i)->getValue();
}
//echo'<pre>';print_r($val);
}
?>

HTML 代码:

<body>
<form action="" method="post" enctype="multipart/form-data">
<input type="file" name="filepath" id="filepath"/></td><td><input type="submit" name="SubmitButton"/>
</body>

最佳答案

您首先需要在读取行之前上传文件:

$target_dir = 'uploads/';
$target_file = $target_dir . basename($_FILES["filepath"]["name"]);
$imageFileType = pathinfo($target_file,PATHINFO_EXTENSION);

move_uploaded_file($_FILES["filepath"]["tmp_name"], $target_file);

// rest of your code...

现在您应该可以继续处理该文件了。在此之前,该文件从未出现在您的上传文件夹中。

关于php - 如何将 excel 文件从 &lt;input type ="file"> 上传到 php 服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38581632/

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