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 ReadingTag: Object Oriented Programming
PHP 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