What is a PHP framework?

A framework is a toolkit which provides a set of common features which are needed to built a site. While PHP is a language which a lot of people use, they disagree on how exactly to use it. There are many different frameworks, kind of like dialects of a language, which allow for different ways of writing apps.
 
Cosmic said:
A framework is a toolkit which provides a set of common features which are needed to built a site. While PHP is a language which a lot of people use, they disagree on how exactly to use it. There are many different frameworks, kind of like dialects of a language, which allow for different ways of writing apps.

Is a PHP framework like JS libraries? (e.g., jQuery, AngularJS, etc.)
 
Reverse Flash said:
Cosmic said:
A framework is a toolkit which provides a set of common features which are needed to built a site. While PHP is a language which a lot of people use, they disagree on how exactly to use it. There are many different frameworks, kind of like dialects of a language, which allow for different ways of writing apps.

Is a PHP framework like JS libraries? (e.g., jQuery, AngularJS, etc.)
In a way. A "Library" is something that adds to an existing program. For example, you might have a program which needs to do one extra thing, so you find a library to do it for you. A framework is a type of library which you build your app around. You can only really choose one framework, because the framework you choose determines how your app is designed.

jQuery is actually a framework itself, not just a library, because of the large amount of features it offers. I don't know much about Angular, so I can't say whether that's a framework or a library.
 
PHP is a powerful programming language that permits to build up b applications and operates on MVC fundamentals. MVC refers to the pattern featured in different programming languages that splits separately your domain logic from client interface. This logic handles information or user interface and removes confusion.
 
Back
Top Bottom