0

I was just wondering (sake of knowledge) if "PHP-framework" concepts is strictly binded and depending upon the "MVC" concept.What I mean is: there's any php framework not relying on the MVC architecture??

At wikipedia

Most web application frameworks are based on the MVC pattern.

thanks.Most not all =)

Luca

luca
  • 36,606
  • 27
  • 86
  • 125

3 Answers3

3

It is not necessary for a PHP framework to use the MVC paradigm.

However, it is very useful so it often used.

alex
  • 479,566
  • 201
  • 878
  • 984
  • thanks.I find the MVC really useful as well =) just wanted to know any no-MVC php framework – luca May 30 '11 at 07:02
1

Perhaps off topic: Hierarchical Model-View-Controller pattern is an interesting variant of MVC and is supported in frameworks such as Kohana (directly) and CodeIgnitor (indirectly)

Jay Sidri
  • 6,271
  • 3
  • 43
  • 62
0

The MVC architecture is not limited to php and there many alternative. I had a similar question recently:

What are the alternatives to MVC architecture for web development?

Community
  • 1
  • 1
Ibu
  • 42,752
  • 13
  • 76
  • 103
  • I didnt mean "MVC" architecture limited to PHP but I wonder if PHP frameworks are limited to MVC – luca May 30 '11 at 07:12
  • No like you can see on my link there are many other frameworks proposed – Ibu May 30 '11 at 08:10