将报告打印到纸上
我需要将一些 PHP 生成的报告打印到纸上。嗯,一些 HTML、浏览器和打印机……
当客户想要在报告的每一页中添加页眉和页脚时,问题就出现了。有时,内容适合一页。但有时并非如此,因此我需要在每个打印页面中打印页眉和页脚(带有“第 1 页(共 15 页)”标记、徽标以及每个报告的详细信息)。
使用 codeigniter 而不创建 PDF 怎么样?
I need to print out some PHP-generated reports to paper. Well, some HTML, a browser and a printer…
The problem comes when the client wants to add a header and a footer in each page of the reports. Sometimes, the content fits in one page. But sometimes it doesn’t, so I’ll need to print the header and footer in each printed page (with some mark as “Page 1 out of 15”, the logo, and details on each report).
How is it with codeigniter and without creating a PDF?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想在不使用 PDF 库的情况下完成此任务,最现代的方法是创建一个定制用于打印报告的 CSS。
如果您 Google“打印CSS”有很多教程/示例可以帮助您入门。
If you want to accomplish this without using a PDF library, the most modern way to do this is to create a CSS that is customized for printing out the report.
If you Google "print CSS" there are a lot of tutorials/examples to get you started.