What is a django-like framework for PHP with auto-

2019-02-18 05:22发布

I'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 generator.

4条回答
仙女界的扛把子
2楼-- · 2019-02-18 05:52

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).

查看更多
相关推荐>>
3楼-- · 2019-02-18 06:01

Have a look at QCodo

查看更多
该账号已被封号
4楼-- · 2019-02-18 06:05

Symfony has a great admin generator based on ORM models.

查看更多
倾城 Initia
5楼-- · 2019-02-18 06:13

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.

查看更多
登录 后发表回答