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.
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 9 months ago.
Improve this question
I have a prosperity application written in-house in PHP for collaboration (Basecamp knock off). We're looking for a way to add IM chat (facebook or gmail style chat), is there a opensource solution we could use with great documentation and a easy to use API?
Platform:
Linux, PHP 5, MySQL, SmartyPHP and Zend Framework.
Maybe you could use Chris Coyier's Chat Room.
http://css-tricks.com/chat2/
Another might be Ajax IM
http://ajaxim.com/
Search for Jabber. It's an open standard based IM protocol. There are several open source implementations which you can use. Also, there are several PHP Client API's which you probably can suit to your needs.
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.
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 am trying to create graphical representations of existing code. I have tried to use VS.PHP (with Visual Studios 2010) but cant seem to generate class diagrams from this.
I have tried to use Pear's PHP UML package which has produced a lot of JavaDoc style documentation and an XMI document. From what I have read, this can be used to create class diagrams? If so, how?
Are there other "easier" alternatives?
Thanks in advance
You can use Enterprise Architect. It has an option to reverse engineer your code.
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.