Something like python-DJANGO in PHP?

Does anyone know something similar to django in PHP? I am looking for something that is easy to use as django.

I have been using django for quite some time, and now I need to do some PHP development, and I expected to use something like this

thanks

+6
php django frameworks
source share
3 answers

There are many MVC frameworks for PHP - it’s hard to say which ones are “similar to Django” due to differences in functions (and most people don’t even use everything that is available in Django). But if you are just looking for a framework that uses the MVC paradigm, now you have a convenient list for viewing, as well as some phrases available by Google

+3
source share

Yii is very similar to Django, try

+2
source share

Symfony2 is the most Django-like PHP framework. It was released just a few months ago, so don’t expect the full documentation or the LTS version, but it has several features that are very similar to Django: Twig (the template engine), Bundles (almost like applications in Django), ORM and Assetic (library to handle static resources).

+2
source share

All Articles