luca
luca

Reputation: 37136

PHP frameworks : MVC..and what else?

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

Upvotes: 0

Views: 507

Answers (3)

Jay Sidri
Jay Sidri

Reputation: 6406

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)

Upvotes: 1

Ibu
Ibu

Reputation: 43810

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?

Upvotes: 0

alex
alex

Reputation: 490153

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

However, it is very useful so it often used.

Upvotes: 3

Related Questions