PHP Mysql 导出为 pdf
我有数百万数据需要导出为pdf。 我做不到。 请给我建议方法。 使用内置标头(内容类型:application/pdf)无法解决我的问题。 我也尝试过使用 TCPDF。在数据较少的情况下,tcpdf 工作正常,但在处理数百万数据时,需要非常非常长的时间。
告诉我一种方法,我可以轻松导出以 pdf 格式导出的数以百万计的 mysql 数据。
I have millions of data to be exported to pdf.
I am not able to do that.
Please suggest me the way.
Using inbuilt header(Content-type: application/pdf) is not resolving my problem.
I have also tried using TCPDF.With less data tcpdf works fine but with millions it takes very very long time.
Tell me a way where I can easily export mysql data that counts to millions exported in pdf.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试使用 fpdf。另外这个问题可能对您有帮助。
Try using fpdf. Also this question might help you.
尝试在 dbForge Studio for MySQL 中使用数据导入(PDF 格式)。我认为您可以在 PHP 中使用命令行支持。
Try to use Data Import (PDF format) in dbForge Studio for MySQL. There is command-line support, that I think you could use in PHP.
我建议您将所有数据移动到文本文件,然后您可以像这样在 Linux 中安装任何应用程序( http: //www.eprg.org/pdfcorner/text2pdf/ )
,现在使用 php exec 并使用 text2pdf 的命令行运行得比 php 更快
还请参阅此链接
i suggest you move all data to text file and then you can install any application in linux like this ( http://www.eprg.org/pdfcorner/text2pdf/ )
and now use php exec and use command line of text2pdf in run faster than php
also see this link