dcolumbus
dcolumbus

Reputation: 9722

ASP.NET MVC 2 is comparable to what PHP MVC?

I've been doing a lot with ASP.NET MVC 2 at work and I'd like to utilize my new skills at home... but I have Apache servers, not IIS.

What PHP MVC solutions are the same or at least comparable to ASP.NET MVC 2?

Upvotes: 0

Views: 149

Answers (3)

calvinf
calvinf

Reputation: 3924

There are a number of PHP MVCs to look at:

Kohana is the only one I've done work with and I found it fairly easy to get started. It's open source and specifically created to support PHP 5.2+ so it has a clean, object-oriented codebase.

Upvotes: 0

rcravens
rcravens

Reputation: 8390

Why not use mono? I believe you can directly use your asp.net mvc skills and deploy to your apache servers.

http://www.mono-project.com/Main_Page

Upvotes: 0

Shuo
Shuo

Reputation: 4849

;-) Here's a list another developer has found: http://www.mustap.com/phpzone_post_73_top-10-php-mvc-frameworks.

The #1 solution he recommends is Symfony

Upvotes: 2

Related Questions