OOP PHP
Object Oriented Programming PHP
OOP stands for Object Oriented Programming, which assume that everything in the programming language is an object, such objects in the real world. yes, OOP can be imagined as an object in real life. such as you and I are different human objects. you have your own name, as well as me. OOP Knowing the properties and methods. properties such as eyes, noses and other body members. whereas the method associated with what we can do, such as eating, drinking and so on. property itself can be the object. extensive use of objects, things like talking between me and you can be represented as an object.
OOP started provided since PHP version 4.x. but has limited advantages. Version 5.x of PHP is PHP version that supports full OOP. This tutorial uses PHP version 5.3.0 which has the advantages to OOP than the previous PHP versions.
list tutorial dari OOP PHP
- Class
- Object
- Property
- Method
- Variable this
- Inheritance
- Inheritance (property and method)
- Visibility (access modifier)
- Setter and Getter
- scope resolution
- Static Property
- static method
- magic methods
- Constructor
- destructor
- get class vars and get class method function
- dynamic variable
- overloading __set
- overloading __get
- overloading __isset
- overloading __unset
- overloading and update value
- overloading and update element array
- overloading __call
- overloading method __callstatic
- class constant
- magic constant for OOP
- self keyword
- parent keyword
- static keyword


