I'm trying to learn more about MVC but I would really like some examples I can play with and modify to help learn the concepts and my language of choice is PHP.
Books/websites are preferred, thanks!
EDIT: I didn't really want to use a framework...
feedback
|
|
Questions about MVC spread everywhere around, and I found myself difficult to learn what it was about. I guess I am going to write a quick introduction because I really think it's easy to understand if you have the right informations at your disposal. What you need to know to understand MVCBefore trying to understand MVC, you must understand fully the difference between :
The data is your information in its purest form. It's the input of your program. Most of the time the data is what is stored in files or in a database but it can be the user input as well. (1) The way you represent your data is how you decide to show the data to the external world : it can be HTML, pure text, XML, JSON or whatever. The data processing is all the magic stuff you do with your code to manipulate the data between the moment when you take it from the source, to when you transform it to its representation. Deciding what to do if a user is logged in or grouping all the results of a user_search in one variable is data processing. What is MVC and why / when do you want to use it ?MVC is a design pattern. Meaning it's a generic solution that smart guys invented to solve a programming problem that you encounter really often. It works with any technology, it's just a way to program your application. MVC stands for Model, View, Controller. It aims to separate your app in this 3 components :
It's a very nice way to build web apps because it's clear and easy to maintain. It allows you to reuse a lot of code (your use of model code is shared across different views) or to change your input source (if your data base changes, you only need to modify the Model, the rest of your app works the same !) and your formatting (same data for a Web page and a RSS stream...). Designers can work on the Views without needing to know how your app is built. AJAX apps fit better because there are few dependencies between your app components. A very basic MVC example (WARNING - PHP Inside)I am a Pythonista but I am going to use PHP for this one, as it is a typical question that comes back among PHP rookies. Let's picture a Web site where you can get VOD (video on demand) : Example of Model files : Here you put pure PHP methods that often call some SQL code (2). These files do nothing themselves, they are your library describing the data and coding behavior and you will import them everywhere you need to manipulated the database. User.class.php
Movie.class.php
Example of View files : Here you put formatting code (in Web sites, it's mostly HTML) and VERY LITTLE PHP code. The PHP code is just here to access the data exposed by the Models. These files do nothing themselves, they are your templates showing how to display the data to your clients. They will be imported and used everywhere you need to output data. logged.php
*movie_search_result.php*
Example of Controler files : This is the hardest part to understand. Beginners (me first) have a hard time to imagine what to put in the controller :-) Well, it's pure PHP code that figures out what the user wants todo, then fills variables with data from the Model and passes it to the View to finally serve the result to the user. search.php (3)
index.php
How can you self learn MVCWell, there is no other way to learn it than to use it. So when you start coding a new app, do it using your own hand coded MVC (as simply as possible, as explained here : Keeping my PHP pretty). Your only objective, as a beginner, is to fully separate the 3 components. Don't think about optimization, just do it. At first, you'll do it the wrong way (the code above is horrible), but make it work. You'll understand the principle better, and your app won't be worse anyway since you probably used a bad architecture before. What to do next?Once you have understood the principle, you can start using tools to make it more correct :
BTW, moderns frameworks usually ship with an ORM and a templating system, so you are better off just playing with a framework to sharpen your skills. Good coding ! (1) I know that files and data base are actually data representations too and that data is only a virtual concept that only can be manipulated trough representations, but please, don't scare the noobs :-) (2) Yes, there are ORM. Too complex to introduce it here. I'll add a final note about it. (3) I know you should sanitize the data, do usual checks, etc. I just don't want to overload the example. | ||||
|
feedback
|
|
The Zend Framework documentation has a quick explanation of MVC and a walkthrough of setting it up using the Zend Framework library. | |||
|
feedback
|
|
Like you, I also didn't know anything about MVC until I came across the well written User Guide of Codeigniter. I recommend that you, at least, have a look through these pages: Even if you don't end up using this brilliant framework, these pages linked will help you tremendously in understanding MVC, in an easier way than any of us who aren't professional writers can teach you. | |||
|
feedback
|
|
The web is full with articles on this subject. For example Understanding MVC in PHP | |||
|
feedback
|
|
I use and recommend CodeIgniter. | |||
|
feedback
|
|
I guess you may find the CakePHP framework which implements the MVC design pattern useful, check this site http://cakephp.org/ | |||||
feedback
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.