### CSV 导入
jig 2018-1-30
**位置:**
Common\Tools\CsvTools.class.php
**参数:**
* @param $title array 标题
* @param $data array 数据
* @param $filename string 文件名
**调用:**
~~~
use Common\Tools\CsvTools; // 加载文件
public function import() {
$csv = new CsvTools(); // 实例化
$csv->csvImport(); // 导入操作
}
~~~
**完整代码:**
~~~
/**
* 导入CSV 从BaseController import_csv 迁移过来
*
* jig 2017-11-30
* @param $column int 内容多少列
* @param $head 1 为1的时候输出表头
* @return array
*/
function csvImport ($column, $head = '') { // 文件路径 文件内容
// setlocale(LC_ALL, 'zh_CN'); // linux 上中文乱码 需要就打开
$flag = false;
$msg = '未处理';
$maxsize = 1 * 1024 * 1024; // 1MB
$max_column = 1000; // 最大条数
if (empty($column)) {
$msg = '列数不能为空';
$flag = true;
}
// 1、调用上传类进行文件上传
$upload = new UploadTools();
$info = $upload->saveFile(); // 上传文件
if (!$info) {
$msg = $upload->getError();
$flag = true;
}
$path = APP_ROOT . $info['file_path']; // 文件上传的路径
// 2、检测文件是否存在
if ($flag === false) {
if (!file_exists($path)) {
$msg = '文件不存在';
$flag = true;
}
}
// 3、检测文件格式
if ($flag === false) {
if ($info['ext'] != 'csv') {
$msg = '只能导入CSV格式文件';
$flag = true;
}
}
// 4、检测文件大小
if ($flag === false) {
if (filesize($path) > $maxsize) {
$msg = '导入的文件不得超过' . $maxsize . 'B文件';
$flag = true;
}
}
// 5、读取文件
if ($flag === false) {
$row = 0;
$handle = fopen($path, 'r'); // 读取文件
$result = array();
while ($data = fgetcsv($handle, $max_column, ",")) {
// 是否输出表头判断
if ($head == 1) {
$row++;
}
// 基于表头判断表列是否一致
if ($row == 1) {
if (count($data) != $column) {
$msg = '文件不符合规范,请重新下载模版编辑数据';
$flag = true;
break;
}
}
/*
$num = count($data);
if ($num < $column) {
$msg = '文件不符合规格真实有:' . $num . '列数据';
$flag = true;
break;
}
*/
if ($flag === false) {
for ($i = 0; $i < $column; $i++) {
if ($row == 0) {
break; // 第一行标题不赋值
}
$result['data'][$row][$i] = mb_convert_encoding(trim($data[$i]), 'utf-8', 'gb2312 '); // trim($data[$i]); // 赋值组合数组
}
}
// 不输出表头格式
if ($head != 1) {
$row++;
}
}
}
$result['error'] = $flag;
if ($flag === true) {
$result['msg'] = $msg; // 提示错误信息判断
}
return $result;
}
~~~
- 模版
- 前言
- 项目架构
- 项目规范
- HTML
- CSS
- Javascript
- PHP
- MySQL
- 注意规范
- 开发版本管理
- 开发流程
- 系统配置
- 阿里云服务器配置
- 计划任务配置说明
- 开发示例
- Page分页
- Search_param搜索结果赋值
- Add新增
- Edit编辑
- Ajax表单验证
- Ajax二级联动
- Excel 导出数据首位不去0的方法
- POS总部控制
- 下载CSV格式的模板
- 订单唯一码表和订单SKU表实收金额生成
- 快捷日期选择
- JS函数
- ajax_send
- ajax_result
- createQrCodes
- createBarCodes
- printTpl
- JS插件
- BootstrapValidator表单验证插件
- Address省市区插件
- Bootstrap-datepicker日期插件
- Bootstrap-select多选框插件
- Toastr消息提示插件
- PalyAudit扫描声音提示插件
- WebUploader多图片上传插件
- Ueditor富文本编辑器插件
- Function
- alert
- object_to_array
- array_to_object
- get_address
- set_param_url
- get_shops_name
- get_user_name
- get_warehouse
- get_cheapest_sku
- print_attr(新)
- print_img(新)
- get_spu_no(新)
- get_type_name(新)
- get_brand_en(新)
- get_cat_name(新)
- get_attr_name(新)
- spu_cat_info(新)
- get_time_event_price
- get_vendors
- check_total_reduce
- check_total_discount
- get_inventory
- get_delivery
- get_sale_inventory
- get_customer_name
- phone_protection
- get_order_no
- get_event_name
- get_order_status
- get_item_status
- get_ditch_name
- get_card_no
- get_shop_sales
- get_pay_name
- get_season
- amt_format
- get_cat_parent
- print_attr_id
- round_bcadd
- round_bcsub
- round_bcmul
- round_bcdiv
- get_account_name
- Controller
- Common_BaseController
- check_membership_card
- get_menu_list
- importErrorMassage
- Wpos_IndexController
- get_customer_vip_card
- get_shops_id
- calculate_active_integral
- check_numbers_active
- check_goods_active
- Woms_IndexController
- Model
- View
- category
- cycle_date.html
- shop_select门店多选搜索框
- 品牌A-Z排序多选brand_mc.html
- 供应商代码A-Z排序vendor_no_mc.html
- Lib
- BuyerLib
- WarehouseLib
- EventLib
- getTimeEventPrice
- getVipType
- getEvent
- orderTotalEvent
- orderTimeEvent
- getTotalReduce
- getTotalDiscount
- SaleLib
- CustomerLib
- addCustomerService
- GiftcardLib
- WechatLib
- wxRefund
- OrdersLib
- orderLog
- calculatePayinAmount
- calculateSubtotal
- correctPayinAmount
- saveOrderAddress
- getOrderAddress
- setDeliveryNo
- SyncLib
- updateOuterStock
- UserLib
- createCommission
- FlowLib
- orderList
- addOrder
- addLog
- orderInfo
- checkSku
- orderSave
- orderStop
- orderExecute
- skuEdit
- orderPrinta
- scanGoods
- boxClose
- orderOut
- take
- bview
- check
- deliveryStatus
- checkGoods
- GoodsLib
- createGoodsNo
- createNewGoodsNo
- getSystemStyleNo
- getDim
- MallLib
- smsLog
- GoodsBaseLib
- getBrandInfo
- getBrandsInfo
- getAttrIdArray
- getPrintAttr
- getMustAttr
- getCatIdInfo
- valTypeId
- valsTypeId
- getCatNoInfo
- getCatInfo
- getAttrArr
- getAttrInfo
- getValInfo
- getAttrId
- getValId
- getAttrSeaon
- getValueId
- PointsLog
- pointsIn
- pointsUp
- EcGoodsLib
- getSkuInventory
- Tools
- CsvTools
- csvImport
- csvExport
- ExcelTools
- importExcel
- exportExcel
- exportHeadExcel
- MailTools
- SmsTools
- sendMessage
- UploadTools
- ExportTools
- exportData
- TaobaoTools
- getOnsaleItems
- getSkusItems
- PicturesTools
- uploadPicture
- Plugins
- WxBase
- Taobao
- 问题反馈