如何将日期范围内的Excel数据插入数据库
我想将一些 21 天范围内(从第 1 天到第 21 天)的 Excel 数据插入数据库中。在PHP编码中使用:)
任何人都可以帮我吗,
1)如果是第一次将excel数据插入数据库表,数据是excel列中的整个日期,之后数据库将检查表是否不是空,它只会更新数据。(这可能吗?)
2)举个例子:$today是06/24,excel文件中的第一天,它只会将整个数据从excel文件插入数据库,尽管休息Excel 列中的数据为空。而如果 06/24 是 Excel 文件中的第 10 天,则数据库只会更新 06/24 的数据。
谢谢~
I would like to insert some excel data in range of 21 days (from day 1 until day 21)into database. Use in PHP coding :)
Can anyone give me a helping hand ,
1) If it is the first time insert excel data into the database table, the data are the whole date in excel column, after that the database will check if table is NOT empty, it will just update the data.(Will this be possible?)
2)Lets for example : $today is 06/24 , the first day in excel file, it will only insert the whole data into database from excel file although the rest of data inside the excel column are empty. While if 06/24 is the 10th day in excel file, the database will only update data on 06/24.
thanks~
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 php ExcelReader 来完成此操作。它返回数组中的所有数据,之后您可以根据日期范围轻松地将其插入数据库中(如果存在则更新,否则插入)。找到下面的链接来下载 ExcelReader。
http://code.google.com/p/php-excel-reader /下载/列表
You can do this using php ExcelReader. It return all data in array after that you can insert it according to date rage (If exists then update otherwise insert) in your database easily. Find below link to download ExcelReader.
http://code.google.com/p/php-excel-reader/downloads/list