初学者 php 开发人员使用 LiveDocx 白 Zend Framework 是否会占用 cpu 资源?
我是 php 世界的初学者,我需要在 Web 应用程序中构建可以转换明确定义的结构的选项 从 txt/html 到 rtf/pdf 我发现使用此网站搜索依赖于 Zend Framework 的 LiveDocx php 组件 现在我不熟悉php引擎(解析器) 所以我问各位专家,使用这个组件有什么好的解决方案吗?或者它就在头顶上?
im beginner in the php world i need to build option in web application that can convert well defined structures
into rtf/pdf from txt/html i found using this site search about LiveDocx php component that is dependent on Zend Framework
now im not familiar white the php engine ( the parser )
so im asking you experts is it good solution to use this components ? or its just over head ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一些简单易用的工具:
如果您想要简单的方法,请尝试dompdf - PHP 5 HTML 到 PDF 转换器。它可能会起作用,具体取决于您的 html。您也可以尝试 ezPdf。
如果您需要解析 html,请尝试 php 的 DOMDocument::loadHTML 函数。它将为您提供一个接受 xpath 查询的对象,以便于处理。
some simple to use tools:
if you want the easy approach try dompdf - The PHP 5 HTML to PDF Converter. It might work, depending on your html. you could also try ezPdf.
If you need to parse the html, try php's DOMDocument::loadHTML function. It will give you an object that accepts xpath queries for easy handling.
我只是想分享我在网上查了很多资料后的一点经验 http://mpdf.bpm1.com/ 这个实用程序是一个库的组合,我用它来按需生成发票。
我希望这对你有用。
I just want to share my little experience after looking on the net a lot I found http://mpdf.bpm1.com/ this utility is a mix of libraries I´m using it to generate invoices on demand.
I expect this can be useful to you.