I did a project on web application using procedural php(didn't used oop concepts).
for the documentation purpose i am supposed to design UML models for my application.
as we all know that,UML is object oriented, how can i achieve uml for procedural php??
is there any possibility for doing this? other than changing my code to object oriented!
if possible please mention which diagrams i must design.
I searched in web, but i didn't found proper information.
i was totally confused, please help me out with this.
thanks in advance :)
Asked
Active
Viewed 447 times
2

bharat
- 330
- 1
- 3
- 13
-
+1 A very interesting question. – Gangnus Jan 16 '14 at 09:17
1 Answers
2
Of course, you can't use the class diagram(directly). It, and only it is about OOP.
But all other diagrams are opened for use. For example:
- Data diagrams for your DB planning
- Communication, sequence, state machine and activity diagrams for cooperation of your servers and pages.
- Deployment for to plan where will lies what.
- Timing diagram - to resolve the timeouts.
- What is funny, you even can use the class diagrams - for planning UI for a page - every element on the page has its elements and its functions and I use the class diagram for it.

Gangnus
- 24,044
- 16
- 90
- 149