For a long time, I am using Paypal in my PHP application for development purposes. On the basis of my understanding and experience of Paypal. I want to share my knowledge. I hope it will
Continue ReadingYear: 2020
PHP As An Object Oriented Programming Part-2
Class Method:- The function which is declared in a class is called Method. The method can be Public, Private, or protected. Valid method name can start from underscore or letter and follow by any letter,
Continue ReadingPHP As An Object Oriented Programming Part-1
Class In PHP :- PHP defines a class using class keyword and followed by class name and then followed by opening and closing curly braces { }. These curly braces enclose the definition of class
Continue ReadingObject Oriented Programming in PHP
Object-oriented programming is an approach to programming where objects and classes are used.PHP start support Object-Oriented Programming from version PHP4. But from version PHP5 it becomes very advance because the object model was rewritten for
Continue Reading