Video Embed Powered By :

  • Videoku.TV
  • YouTube-Logo
 

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

  1. Class
  2. Object
  3. Property
  4. Method
  5. Variable this
  6. Inheritance
  7. Inheritance (property and method)
  8. Visibility (access modifier)
  9. Setter and Getter
  10. scope resolution
  11. Static Property
  12. static method
  13. magic methods
  14. Constructor
  15. destructor
  16. get class vars and get class method function
  17. dynamic variable
  18. overloading __set
  19. overloading __get
  20. overloading __isset
  21. overloading __unset
  22. overloading and update value
  23. overloading and update element array
  24. overloading __call
  25. overloading method __callstatic
  26. class constant
  27. magic constant for OOP
  28. self keyword
  29. parent keyword
  30. static keyword