Which is the best PHP MVC framework? [closed] - php

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
I'm new to PHP and this forum, I just would like to know which is the best PHP MVC framework regarding to performance and scalable at the present? I wonder if Yii is the best one.

There is no best MVC framework. Use the one that you are comfortable with. Here are some list of MVC frameworks that you would want to lookat
Yii
CodeIgniter
CakePHP
Symfony2
Zend Framework
Laravel
or here is the entire list of PHP frameworks

Related

Is it good for my courier using php and laravel? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 1 year ago.
Improve this question
I'm using php and Laravel.
Is is good to build my courier?
I know this is ridiculous but i wonder.
modern php is much better than before.
but i'm still wonder using php.
Yeah it is still good using php especially laravel.
First, php framework (laravel) using MVC Architecture that easy to use, and many tutorials there.
And then, laravel have a feature called Eloquent ORM for easy interaction with your app database

What would be the best way to learn YII framework? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have used codeigniter for developing websites and now I am switching to Yii. Can someone please suggest me what would be the best way to learn YII framework?
This link would be enough to learn basic usage
http://www.yiiframework.com/wiki/268/how-to-learn-yii/
There's a documentation section on the official web. Start there + simply start writing in Yii.

What are the advantages of a php framework like codeigniter? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
What would be the advantage of using a framework like codeigniter vs raw PHP?
MVC pattern, which I recommend you read about. It provides concern separation and is an industry standard for building web apps.
Less boilerplate code - everything (mostly) you need is already provided by framework classes API
Active Record - a nicer way to query database
etc. Bottom line is - use a framework, unless it's a quick hack, then framework might be an overkill

How to organize better the controllers in symfony framework? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I have a lot of controllers I want to know ways to organize them better
There shouldn't be very much common behavior between your controllers. If you do have duplicate code or common behavior, then it should probably be refactored out to a service. Thin controllers, fat models & services.
Knp University has a really good (and free) screencast on the topic:
http://knpuniversity.com/screencast/question-answer-day/model-organization

Joomla Framework Questions [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
I'm planning to make me a new website. I have choosen Joomla as my CMS to go.
But before I start, I have 2 questions:
Is it possible (and easy) to change the Theme on the fly? So that a user can select an alternate theme?
What do u think about frameworks? Especially for Joomla. Should i use one? If yes, which one do you suggest? (a free one)
Yes it is possible for the user to switch the template on the fly. See this extension.
Joomla! has its own built in MVC framework which you'll see and use if you develop your own components. There is no need to use another framework within that.

Categories