What is a django-like framework for PHP with auto-generated CRUD pages? [closed]
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this questionI'm looking for a simple MVC framework for PHP and would like something that handles basic user auth (for the admin) and generates it's own CRUD pages out of the box.
Edit: I'd really like something that creates these admin pages on the fly or "automatically" instead of the whole "baking" concept or having to manually update the CRUD pages via some generato开发者_高级运维r.
Have you tried CakePHP?
Using bake you can generate Models, Views and Controllers with CRUD.
Cake also has a Security component and Access Control Lists (ACL).
Symfony has a great admin generator based on ORM models.
Have a look at QCodo
I've tried a few PHP frameworks and right now the one i find the easiest is Yii.
It doesn't generate CRUD on the fly but does the rest of what you want in a rather simple way. It also has lots of extensions for most of the common jobs.
精彩评论