我第一次尝试从excel文件中读取,但是我遇到了一些问题。我正在使用PhpExcel库,我正在使用以下代码,现在excel文件已上传到文件夹中,但它没有显示excel文件的任何数据,并且它给出错误
“错误被捕获无法打开C:\ xampp \ tmp \ phpF85B.tmp进行读取!文件不存在。”
和
之类的通知注意:未定义的变量:第24行的C:\ xampp \ htdocs \ PhpExcel \ index.php中的obj
注意:尝试在第24行的C:\ xampp \ htdocs \ PhpExcel \ index.php中获取非对象的属性
最后
致命错误:在第24行的C:\ xampp \ htdocs \ PhpExcel \ index.php中的非对象上调用成员函数toArray()
<?php
if(isset($_POST['sub']) && !empty($_FILES['ex_file']['name'])){
$file=$_FILES['ex_file']['name'];
$type=explode(".",$file);
if(end($type)!= "xls" && end($type)!= "xlsx"){
echo "The File is not and excel file";
}
else{
include "PhpExcelLib/Classes/PhpExcel/IOFactory.php";
$dir="uploads/";
$name=$_FILES['ex_file']['name'];
$tmp_name=$_FILES['ex_file']['tmp_name'];
if(move_uploaded_file($tmp_name,$dir.$name)){
try{
$obj=PhpExcel_IOFactory::load($tmp_name);
}
catch(Exception $e){
echo "Error is catched". $e->getMessage();
}
$data=$obj->getActiveSheet->toArray(null,true,true,true);
print_r($data);
}
else{
echo "File is not uploaded";
}
}
}
?>
<html>
<body>
<form method="POST" enctype="multipart/form-data">
<label>Choose File To View Data</label>
<input type="file" name="ex_file" id="ex_file" />
<input type="submit" name="sub" value="Submit" />
</form>
</body>
</html>
答案 0 :(得分:1)
您的文件无法上传。
请检查并查看导致错误的原因:
// Check $_FILES['upfile']['error'] value.
switch ($_FILES['upfile']['error']) {
case UPLOAD_ERR_OK:
break;
case UPLOAD_ERR_NO_FILE:
throw new RuntimeException('No file sent.');
case UPLOAD_ERR_INI_SIZE:
case UPLOAD_ERR_FORM_SIZE:
throw new RuntimeException('Exceeded filesize limit.');
default:
throw new RuntimeException('Unknown errors.');
}
这可以让您了解错误