Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
We are building a LAMP application that also needs to generate loads of complex PDF reports.
I'm looking for a library that runs on our Debian server and allows us to generate these reports.
The language isn't of great importance (java, python, php, perl, ...) as long as it's stable, flexible and supports Unicode. LTR and RTL writing systems are mandatory and if chinese is also supported it would be totally awsome.
I've already found ReportLab which looks promising, any other suggestions?
JasperReports is a good bet for generating reports using Java.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I have a large code base I've written in Perl for a web application. Recently, I've decided to use Braintree's payment system, but their Perl library is deprecated. I decided I'd have to write a new set of PHP scripts that duplicated quite a few user functions from my Perl code, which, obviously, is less than ideal. Then I came across PHP::Interface on CPAN and the PECL Perl extension for PHP, both of which promise to allow code from the one language to be interpreted in the other, exposing variables across the language divide, etc. Either would be a huge help, but both appear unmaintained and broken in modern environments. Is there some currently maintained way to either expose my Perl modules to PHP or some PHP functions into Perl?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I want a tool to help me generate sequence diagram from PHP class,
is there any tools?
free or open source software will be prefered. THX~~~
UPDATE: And it must has Mac supported.
I will prefer UML diagram.
You can draw the diagram with the flow.
If you want to generate sequence diagrams capturing execution flows for documentation and debugging you can use this tool :
http://rattias.github.io/mscviewer/
you can use this tool to generate PlantUML sequence diagrams based on the execution flow of a PHP application:
https://github.com/desjob/callgrind-to-plantuml-sequence-diagram
it requires recording with the XDebug profiler, and can generate images too.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
We're evaluating if we have to re-invent the wheel because of the lack of good libraries or we simply can't find one. We have pretty clear and strict requirements:
Must be MIT
Must have Unit Tests (phpunit)
Must support engines (gd, imagick, imagick shell...)
Must be php 5+
The best thing we've found so far is Asido but its pretty much outdated and abandoned.
Any libraries you know that match our needs?
Have you tried Imagine? It meets all your requirements.
I had used it once (however for a very simple image manipulation) and it turend out to be a pretty useful and easy-to-use library.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm trying to make a captcha system that isn't the same as all the others using ASCII art text. Similar to what can be found here.
Does anyone know of a library which can generate something similar?
The ASCII generator you linked to use the figlet program on the commandline, for example with shell_exec. Figlet can be installed on most Unix machines (and is in the package repository for some GNU/Linux distributions, for example in Debian and Ubuntu).
You might have a look at Zend_Captcha - it has an ASCII (through figlet) adapter.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am looking for some asp to php translator.
I tried http://www.design215.com/toolbox/translator/ it is totally buggy.
please suggest me good think.
Thanks in advance.
There is no commercially available or open source product that will turn classic ASP pages into PHP.
I've heard of companies rolling their own ASP to PHP compiler internally, but it always relies on keeping yourself to a particular subset of each language and/or external features (PHP Extensions, ASP Components, etc.)
You will not find what you're looking for.
This is something else that I found:
http://asp2php.naken.cc/docs.php
Haven't tried it out. But translation is probably not a very robust solution.