Skip to content Skip to sidebar Skip to footer

Any Framework For Php, As Effective As Django For Python?

I am using python with django. There I can simply make form from models and also it had builtin Admin. I am eager to know corresponding framework for PHP with all this facilities.

Solution 1:

I'd try Symfony.

What you're referring to sounds like "scaffolding"

Solution 2:

I've had good success with Zend in the past. It has a lot of functionality in its libraries and it is all completely decoupled, so you can use whichever parts best fit your task, leaving out other things all together.

Solution 3:

It doesn't have built in admin, but I like CodeIgniter. It really gives you freedom with your code without getting in the way.

Solution 4:

I like Yii. It's based on the Model-View-Controller pattern, like most of the other PHP frameworks mentioned here. It uses templates, can do scaffolding, etc...

Solution 5:

Another one that once saved my ass in a project with close deadline was CakePHP

Post a Comment for "Any Framework For Php, As Effective As Django For Python?"