Open source PHP reporting tool

烂漫一生 提交于 2019-11-28 18:53:46

There are tons of reporting libraries, most of which create Xml or Csv. You would have to give more data about what kind of reporting you need for a recommendation. I haven't used PHPExcel yet, but it is the first attempt I have seen to actually create Excel documents rather than creating CSV's that will load in Excel. PDF creation is built into PHP with the PDF functions, and is fairly easy to do.

I Think PHP Report Maker is ther best php Reporting Tool's but it is not free or open source.

A newer library that looks very promising is PHP Reports by jdorn on github.

This is unrelated to the older library by the same name hosted on Sourceforge.

A bit late, but you might want to check out RLib - works with PHP and MySQL and creates multiple different types - PDF, CSV, HTML etc.

http://rlib.sicompos.com/

Unfortunately I don't know of a decent reporting class in PHP.

Do you need a full reporting suite, or do you just need to be able to export data to the pdf and Excel file formats?

If you only need to create these kind of pages, the simplest solution would be to display the data you require and add CutePdf software which installs itself as a printer. Then you can print to pdf from the browser.

If you need to create pdf files on the server side, there is a pdf creation library in the Zend Framework. ZendFramework-1.8.1\library\Zend\Pdf

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!