导出pdf表格数据导入mysql
我想从pdf文件中导出表数据并将其插入到mysql数据库中。我该怎么做呢?
问候, 雷卡
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想从pdf文件中导出表数据并将其插入到mysql数据库中。我该怎么做呢?
问候, 雷卡
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
首先将 PDF 转换为文本。有一个名为 pdf2text 的程序,您可以下载并使用它来执行此操作(例如通过
exec
)。或者,有几个 PHP 类可以将 PDF 转换为文本,例如 这个是我为你找到的。获得文本后,您将需要解析文本输出并填充数据。您很可能想查看正则表达式。
Start by converting the PDF into text. There's a program called pdf2text which you could download and use to do that (through
exec
for instance). Alternatively, there are several PHP classes which can convert the PDF into text like this one I found for you.Once you have the text, you'll want to parse the text output and populate the data. You'll most likely want to look at regular expressions.