langenf Posted June 11, 2010 Share Posted June 11, 2010 I have been procedurally programming, decided to learn ZF as it would be useful for large projects (and good for my resume). I read the theory behind design patterns in general and MVC in particular and understood it. But I do not understand the stuff in the zend website their quickstart does not help either. Please note that im learning ZF inorder to increase my prospects, others such as cakephp or symphony is not that used where i live so iam stuck with ZF. Please say what I need to learn to actually understand zend framework. Quote Link to comment https://forums.phpfreaks.com/topic/204493-learnt-oop-basics-but-just-cannot-understand-a-framework/ Share on other sites More sharing options...
zq29 Posted June 11, 2010 Share Posted June 11, 2010 You might be interesting in the screen casts over at ZendCasts.com - That was my starting point to learning some basics about ZF, I found it worthwhile, after that, it's a case of just trying stuff and reading the documentation. Quote Link to comment https://forums.phpfreaks.com/topic/204493-learnt-oop-basics-but-just-cannot-understand-a-framework/#findComment-1070802 Share on other sites More sharing options...
Daniel0 Posted June 11, 2010 Share Posted June 11, 2010 I read the theory behind design patterns in general and MVC in particular and understood it. Are you sure? Quote Link to comment https://forums.phpfreaks.com/topic/204493-learnt-oop-basics-but-just-cannot-understand-a-framework/#findComment-1070844 Share on other sites More sharing options...
langenf Posted June 11, 2010 Author Share Posted June 11, 2010 I read the theory behind design patterns in general and MVC in particular and understood it. Are you sure? i think so. just the theory behind it, seperation of concerns of data(model), view(what user sees) and controller(logic) Quote Link to comment https://forums.phpfreaks.com/topic/204493-learnt-oop-basics-but-just-cannot-understand-a-framework/#findComment-1070919 Share on other sites More sharing options...
ignace Posted June 11, 2010 Share Posted June 11, 2010 I read the theory behind design patterns in general and MVC in particular and understood it. Everyone thinks of the MVC as a complicated pattern while it isn't. For example, on most websites you would create a request like http://www.domain.com/about-us.php But in an entire OO application you want to map that request to an object (Controller). The FrontController does the actual mapping and the Controller makes sure that the request returns in a response (View) and that the communication (client & server) has some means to be stored (Model). It took some time before I really understood MVC. Quote Link to comment https://forums.phpfreaks.com/topic/204493-learnt-oop-basics-but-just-cannot-understand-a-framework/#findComment-1070924 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.