Skip to main content

Posts

Showing posts with the label OOP

Object Oriented Programming (OOP) in PHP

Hypertext Pre-processor (PHP) is a server side scripting language that means it is operated and executed on the server that means the result will be shown to your browser and it really doesn’t depends on browser.PHP is pa procedural language and you can do each and everything with PHP you can do using Object Oriented(OO) approach. Objects Oriented Approach is just a mean of simplifying the situation.  You could see it in a way as “Include and Reuse”. Object Oriented Programming simplifies web-development by eliminating the need to Cut, Paste and adapt existing code. The biggest argument about the OOP is that OOP is something that is for the large group of developers that means if a number of programmers are involved in the same project, an Object oriented Programming is required because in that environment   there is a great need of Collaboration between the programmer. But a Lone Developer doesn’t need to worry about these things. But a lone developer can easily u...