读取文件并将详细信息保存到php

时间:2018-05-15 07:38:20

标签: php mysql file

我的学校有一个项目和一个考勤系统,我得到的文件包含这些元素:

2042 2018-03-08 17:03:25 27 0 15 0
26059 2018-03-08 17:04:30 27 0 15 0
259 2018-03-08 17:04:34 27 0 15 0
240 2018-03-08 17:05:20 27 1 15 0
26152 2018-03-08 17:05:26 27 1 15 0
152 2018-03-08 17:05:28 27 1 15 0
24073 2018-03-08 17:06:05 27 1 15 0
263 2018-03-08 17:08:12 27 1 15 0
2194 2018-03-08 17:08:27 27 1 15 0
26116 2018-03-08 17:09:47 27 1 15 0
2616 2018-03-08 17:09:51 27 1 15 0

现在,此文本文件表示为id - date - time - and ignore the other lines的字段。

什么是迎合这种情况的最佳选择?

我试过这个选项,但是在我的数据库中,有时我没能得到ID,因为它有不同的id字符串长度。请帮我改进我的代码,我尝试了这个代码:

$lines = file(base_url()."./assets/uploads/".$filename);
                while (!feof($lines)){ 
                    preg_match("'^(.{10})(.{2})(.*)$'",$lines,$n);
                    $data3 = array(
                        'id' => trim(substr($lines, 1,8)),
                        'time' => trim(substr($lines, 20, 9)),
                        'desig_date' =>  trim(substr($lines, 9, 11)),
                        'file' => $filename
                    );
                    $this->Attendance->savedata($data3);
                }

0 个答案:

没有答案