Object Oriented Programming with PHP - Lesson 01
Meet you again on Lesson one, Hope you have got a clear picture about Introduction in your mind. For my today and coming session you have to create two php files : 1. index.php 2. oop.php OOP is all about creating module based codes. So our object oriented PHP code file also a dedicated php file(oop.php) then we will added to our normal file called index.php In today's session all our Object Oriented PHP codes are embedded to oop.php Creating A Class - classes are the templates, they are used to define an objects You can define your own class with the keyword class followed by the name you like 1 2 3 4 5 <?php class workers { } ?> Classes are the blue-prints for php objects we will see about more on class later. Classess contain variables and functions these are called properties in OOP. Now Lets Create a variable into the above class "workers" 1 2 3 4 5 <?php class workers { var $name ; ...