I'm a developer by hobby, meaning that I do it on the side and I don't do it too often. I've been reading on and off regarding web application frameworks and looking in between at CakePHP and CodeIgniter. I finally decided to dive further into CakePHP as it seemed to be more up my alley.
Problem is, the more I dive into it the more I don't understand why I'm using the framework. So, hardcore developers out there, discuss with me, or help me understand the following:
I do understand in the long run application frameworks are there to help deploy code faster, or write code faster. Understandable, however, is a limitation of these frameworks the fact that you have to code to the standards of the framework? The more and more I try to use CakePHP, it's almost like I'm having to learn the framework language/standards on top of the actual programming language. For example, I'm having to learn CakePHP's standards and ways to implement "faster" deployment and interpretation but I'm also trying to code to PHP standards (which is somewhat built into CakePHP), but as a whole, this is what I'm seeing. To me it's a bit of overhead, but if you know CakePHP or your framework of choice, this is nothing, because you probably know how to code to your framework?
The other question or discussion is, as a developer on the side and a person that likes the MVC approach, but does not really know how to implement it with a framework, would the best approach to code the same way I am (through a function file), making my own functions, etc, but also put MVC techniques to use? What I mean by this is, instead of learning an application framework, should I separate the content styles from the functions, etc like MVC works, but use my own functions, or should I learn an application framework.
Note: I could be going about the application framework incorrectly, I'm not sure though. Additionally, this was meant to be a discussion and not a rant; I don't know what I don't know, so I'm actually reaching out for some clarification.
Thanks!