为php项目生成类图(codeigniter框架)

发布于 2024-09-14 01:19:50 字数 119 浏览 4 评论 0原文

我正在使用Codeigniter开发一个系统,它已经接近完成,我没有先看类图,因为它很难决定,所以我立即进行编码,现在我想绘制类我的项目的图表。你们知道我可以用来为我的项目生成类图的工具吗?

I'm developing a system using Codeigniter, and it's nearly completion, i didn't went for class diagrams first because it was hard to decide, so i straight away did coding and now i want to draw class diagrams for my project. do you guys know about a tool that i can use for generating class diagrams for my project?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情话已封尘 2024-09-21 01:19:50

如果你想手动绘制它们(即不希望逆向工程从你的 PHP 源代码生成 uml),那么 StarUML 可能有用(如果您使用的是 Windows,但由于您没有提到它,我假设您这样做了)。

顺便说一句,以下问题也可能有帮助:PHP UML Generator

If you want to draw them manually (ie. don't want reverse engineering to generate uml from your PHP source), then StarUML might be useful (if you're using Windows that is, but since you don't mention it I assume you do).

BTW The following question might be helpful too : PHP UML Generator

绝對不後悔。 2024-09-21 01:19:50

phUML 是我遇到过的最好的工具,并且只对我有用。您可以轻松地从现有代码生成类图。

导航到该文件夹​​并尝试以下命令在 Linux 上生成类图

./phuml -r /var/www/my_project -graphviz -createAssociations false -neato out.png

phUML 是用 PHP 编写的全自动 UML 类图生成器。它
能够解析任何 PHP5 面向对象的源代码并创建
基于 oo 结构的适当图像表示
UML规范。

更多信息

./phuml --help

phUML is the best tool I have encountered and only worked for me. You can easily generate a class diagram from your existing code.

Navigate to the folder and try the below command to generate the class diagram on linux

./phuml -r /var/www/my_project -graphviz -createAssociations false -neato out.png

phUML is fully automatic UML class diagramm generator written PHP. It
is capable of parsing any PHP5 object oriented source code and create
an appropriate image representation of the oo structure based on the
UML specification.

More info

./phuml --help
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文