+ 1
Is it compulsory to learn oops concept in php for learning framwork like worspress larval etc
2 Antworten
+ 1
According to the link:
https://www.quora.com/Is-it-necessary-to-learn-object-oriented-PHP-to-learn-any-PHP-framework
Object oriented programming is fundamental concept of any programming language.
It's a model to represent an entity belonging to a system in programming convention.
Framework is a well organized software architecture defined to develop a system in a standardized manner which facilitates conveniency in programming for an application to programmers.
Majority of frameworks are implemented using MVC model of programming and it follows conventions of object oriented programming.
Hence it is mandatory to learn concepts of object oriented programming prior to learning any new PHP framework.
In my opinion it is really needed to learn OOPs concept in PHP for learning frameworks especially when the framework is PHP-oriented.
0
Thank you sir