How do I generate UML diagram based on existing classes in PHP?

link|improve this question

feedback

8 Answers

I strongly recommend BOUML. It's a free UML modelling application, which:

  • is extremely fast (fastest UML tool ever created, check out benchmarks),
  • has rock solid PHP import and export support (also supports C++, Java, Python)
  • is multiplatform (Linux, Windows, other OSes),
  • is full featured, impressively intensively developed (look at development history, it's hard to believe that such fast progress is possible).
  • supports plugins, has modular architecture (this allows user contributions, looks like BOUML community is forming up)
link|improve this answer
This really is a great tool, thanks – Andy Sep 25 '09 at 9:22
The benchmarks look really impressive. I love enterprise architect but it doesn't have PHP support. I will pass this tool on, thanks. – Paul Dragoonis Aug 16 '10 at 15:40
@Paul Dragoonis Sparx Systems Enterprise Architect does have PHP support - and not the worst one. – ax. Jun 9 '11 at 9:44
3  
The web page for BOUML now states: "CAUTION: Due to the continuous license violations, attacks and insults from people of wikipedia [...], I have decided to stop work on Bouml except to fix bugs." – MPV Jul 6 '11 at 10:04
1  
"[December 18, 2011] Downloads are suspended until further notice" from their official web site. http://bouml.free.fr/download.html - this is because I needed a version for Win7. I imagine it may still be available from Ubuntu repositories - need to check – Val Redchenko Feb 7 at 12:25
show 2 more comments
feedback

There's also the PHP UML tool available from pear.

PHP_UML:

  • Can generate UML/XMI files in version 1.4, or in version 2.1 (logical, component, and deployment views)
  • Can generate an API documentation in HTML format
  • Can generate PHP code (code skeleton) from a given XMI file
  • Can convert UML/XMI content from version 1.4 to version 2.1

install it on the command line via:

$ pear install pear/php_uml-alpha

generate your xmi:

$ phpuml -o project.xmi

link|improve this answer
2  
for some reason, pear.com doesn't like that link without a trailing slash: pear.php.net/package/PHP_UML – Stephen J. Fuhry Jan 8 '10 at 16:13
1  
@Stephen, yeah I noticed that too! If you click the link, it gives you a 404, but if you select the address bar and press enter, it works. – nickf Jan 16 '10 at 14:01
feedback

the best (Windows) software i have found to do PHP and UML is Sparx Systems Enterprise Architect. besides a pletora of features, it supports the following for PHP:

  • Reverse engineer object oriented PHP into UML class diagrams
  • Generate PHP class definitions from UML class diagrams
  • Synchronize changes made in a UML class into the corresponding PHP class definition
  • Synchronize changes made in a PHP class definition into the corresponding UML class
  • Create UML sequence diagrams to show what PHP classes use and how they are used
  • Produce detailed documentation of your PHP code in standard RTF and HTML format
  • Perform code engineering on models to generate base PHP pages.

not free ($199), but definitely worth the money.

link|improve this answer
1  
Wow, that's a really useful and professional program indeed, thanks for the tip!! I just tried the UML class diagram generating with the Sparx EA's reverse engineering method from PHP source code, and it worked like a charm, I was shocked how fine this worked. :D As our projects are growing bigger and bigger, and we create more and more objects, it's getting harder to keep an eye on our own code, but it's a great help in it, as it generates the UML diagrams the right way (of course, maybe exceptions may occur) AFTER we finished the code. This even helps to simplify relations between objects. – Sk8erPeter Jun 9 '11 at 1:17
feedback

Have you tried Autodia yet? Last time I tried it it wasn't perfect, but it was good enough.

link|improve this answer
i tried autodia but somehow i cant generate accurate class diagram (php5) – Jeffrey04 Dec 26 '08 at 10:09
feedback

There's also php2xmi. You have to do a bit of manual work, but it generates all the classes, so all you have to do is to drag them into a classdiagram in Umbrello.

Otherwise, generating a diagram with the use of reflection and graphviz, is fairly simple. I have a snippet over here, that you can use as a starting point.

link|improve this answer
feedback

You can use Visual Paradigm for UML. This might not be the best paid (it's US$699) product, just as an option if anyone would like to try. It can create class diagram from PHP and vice versa, and not only PHP, there's a bunch of language you can choose such as C#, C++, Ruby, Java, VB.NET, Python, Objective C, Perl, etc. There's also a trial you can check on.

link|improve this answer
feedback

Here's how I did it (directly from code to PDF drawing without manual drawing of anything):

  1. Use BOUML for "reverse engineering PHP code" [sic] to extract the class model (BOUML is available from "universe" repository of Ubuntu). I seriously recommend BOUML for this step because it's really fast compared to many other programs I have tried. In addition, it seems that BOUML seems to extract the model correctly (for the parts that BOUML even tries to extract).
  2. Use BOUML to export model as XMI 1.4 file
  3. Use ArgoUML to import said XMI file (you can use webstart version for this step)
  4. Export XMI from ArgoUML (I don't know which XMI version/variant the output is but it is not the same result as the output from BOUML. The argouml-graphviz cannot handle XMI file directly from BOUML).
  5. Use argouml-graphviz to convert ArgoUML exported XMI file to dot format (you may need to use saxon instead of xsltproc to get it work due to use of XSLT2)
  6. Use dot or fdp or sfdp to render the class diagram.

Here's an example of suitable command line for using fdp to output PDF diagram (assuming that dot file generated by argouml-graphviz XLST processing is saved as xmi-model.dot):

fdp -Tpdf -Gmaxiter=1000 -Gmindist=0.5 -Gpackmode=node \
  -Eweight=0.05 -Elen=1.0 -Eminlen=1.0 -Gsplines=true \
  -Goverlap=false xmi-model.dot -oxmi-model.pdf

As an alternative you could try PHP_UML or php2xmi instead of BOUML for doing the "reverse engineering" part. I haven't yet tried that.

(I'm using the phrase "reverse engineering" because it seems that UML people are using those words when they mean extracting class and method information from the source code. I would personally interpret those words as extracting information from executable binary file or captured raw wire data.)

If you prefer drawing the class diagram by hand (instead of using computer to do all the drawing), you can use either BOUML or ArgoUML for the drawing. Using the "reverse engineered" data via BOUML will help in that case.

link|improve this answer
feedback

If you are looking to generate UML easily from your existing PHP Classes you might want to consider PHPStorm 3.0 IDE. It does a good job of replicating existing code into UML.PHP STORM FEATURE LIST

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.