大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺
/**
* 导入
*/
public function import()
{
//composer安装
//composer require phpoffice/phpspreadsheet
$upload_file = $_FILES['file']['tmp_name'];
//文件类型
// $ext = strtolower(pathinfo($_FILES['file']['name'], PATHINFO_EXTENSION));
//自动获取文件类型 (xlsx,xls,csv)
$spreadsheet = IOFactory::load($upload_file);
$worksheet = $spreadsheet->getActiveSheet();
// 总行数
$highestRow = $worksheet->getHighestRow();
// 总列数
$highestColumn = $worksheet->getHighestColumn();
$lines = $highestRow - 1;
if ($lines <= 0) {
//todo,无数据处理
}
$arr = [];
//第二行开始
for ($row = 2; $row <= $highestRow; ++$row) {
//getCellByColumnAndRow(1, $row) 对应列选择
$order_id = $worksheet->getCellByColumnAndRow(1, $row)->getValue(); //编号
$title = $worksheet->getCellByColumnAndRow(2, $row)->getValue(); //名称
//todo,逻辑判断
}
//todo,其余操作
}
$upload_file = $_FILES['file']['tmp_name'];
//自动获取文件类型 (xlsx,xls,csv)
$spreadsheet = IOFactory::load($upload_file);
//直接转为数组,避免上一种方法取值会出现表格内数据格式错误的问题
$data = $spreadsheet->getSheet(0)->toArray();
var_dump($data);
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/193239.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...