SlideShare a Scribd company logo
1 of 21
Download to read offline
Learn Object Oriented Programming (OOP) in PHP

                          By: Stefan Mischook - September 07 2007

               www.killerphp.com - www.killersites.com - www.idea22.com




Preamble:
The hardest thing to learn (and teach btw,) in object oriented PHP … is the basics.
But once you get them under-your-belt, the rest will come much, much easier.

But don't be discouraged! You just found the easiest to understand tutorial out there
on OOP and PHP. It may sound like a boastful claim … I know. But that's what the
nerd zeitgeist is saying.

… Or so I've been told.

Videos:

As an extra bonus, I've created a few video tutorials for you. They cover the same
material as the written article and are designed to reinforce the article.


   •   Introduction to Object Oriented PHP (4:05)

   •   Why learn Object Oriented PHP (14:46)

   •   Objects and Classes in PHP (5:26)

   •   Build Objects in PHP - Part 1 (9:14)

   •   Build Objects in PHP - Part 2 (9:41)

   •   Build Objects in PHP - Part 3 (6:18)



If you have questions/comments, you can contact me at: stefan@killersites.com

Thanks,

Stefan Mischook



Learn Object Oriented Programming (OOP) in PHP

Object-Oriented Programming (OOP) is a type of programming added to php5 that
makes building complex, modular and reusable web applications that much easier.

With the release of php5, php programmers finally had the power to code with the
'big boys'. Like Java and C#, php finally has a complete OOP infrastructure.
In this tutorial, you will be guided (step-by-step) through the process of building and
working with objects using php's built-in OOP capabilities. At the same time you will
learn:

    •   The difference between building a php application the old fashioned
        (procedural) way, versus the OOP way.
    •   What the basic OOP principles are, and how to use them in PHP.
    •   When you would want to use OOP in your PHP scripts.

People run into confusion when programming because of some lack of
understanding of the basics. With this in mind, we are going to slowly go over key
OOP principles while creating our own PHP objects. With this knowledge, you will be
able to explore OOP further.

For this tutorial, you should understand a few PHP basics: functions, variables,
conditionals and loops.


To make things easy, the tutorial is divided into 23 steps.


Step 1:
First thing we need to do is create two PHP pages:

index.php
class_lib.php


OOP is all about creating modular code, so our object oriented PHP code will be
contained in dedicated files that we will then insert into our normal PHP page using
php 'includes'. In this case all our OO PHP code will be in the PHP file:

class_lib.php

OOP revolves around a construct called a 'class'. Classes are the cookie-cutters /
templates that are used to define objects.




Step 2:
Create a PHP class

Instead of having a bunch of functions, variables and code floating around willy-nilly,
to design your php scripts or code libraries the OOP way, you'll need to define/create
your own classes.

You define your own class by starting with the keyword 'class' followed by the name
you want to give your new class.


<?php
class person {



}

?>



Step 3:
Add data to your class

Classes are the blueprints for php objects - more on that later. One of the big
differences between functions and classes is that a class contains both data
(variables) and functions that form a package called an: 'object'. When you create a
variable inside a class, it is called a 'property'.


<?php

class person {

        var name;



}

?>


Note: The data/variables inside a class (ex: var name;) are called 'properties'.


Step 4:
Add functions/methods to your class

In the same way that variables get a different name when created inside a class (they
are called: properties,) functions also referred to (by nerds) by a different name when
created inside a class - they are called 'methods'.

A classes' methods are used to manipulate its' own data / properties.

<?php

class person {

        var $name;

        function set_name($new_name) {

               $this->name = $new_name;

        }
function get_name() {

               return $this->name;
        }

}
?>

Note: Don't forget that in a class, variables are called 'properties'.


Step 5
Getter and setter functions

We've created two interesting functions/methods: get_name() and set_name().

These methods follow a common OOP convention that you see in many languages
(including Java and Ruby) - where you create methods to 'set' and 'get' properties in
a class.

Another convention (a naming convention,) is that getter and setter names should
match the property names.

<?php

class person {

        var $name;

        function set_name($new_name) {

               $this->name = $new_name;

        }



        function get_name() {

               return $this->name;

        }


}

?>

Note: Notice that the getter and setter names, match the associated property name.

This way, when other PHP programmers want to use your objects, they will know that
if you have a method/function called 'set_name()', there will be a property/variable
called 'name'.
Step 6:
The '$this' variable

You probably noticed this line of code:

$this->name = $new_name.

The $this is a built-in variable (built into all objects) which points to the current object.
Or in other words, $this is a special self-referencing variable. You use $this to access
properties and to call other methods of the current class.


function get_name() {

                return $this->name;

        }

Note: This may be a bit confusing for some of you … that's because you are seeing
for the first time, one of those built in OO capabilities (built into PHP5 itself) that
automatically does stuff for us.

For now, just think of $this as a special OO PHP keyword. When PHP comes across
$this, the PHP engine knows what to do.

… Hopefully soon, you will too!



Step 7:
Include your class in your main PHP page.

You would never create your PHP classes directly inside your main php pages - that
would help defeat the purposes of object oriented PHP in the first place!

Instead, it is always best practice to create separate php pages that only contain your
classes. Then you would access your php objects/classes by including them in your
main php pages with either a php 'include' or 'require'.


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-
1" />
<title>OOP in PHP</title>

<?php include("class_lib.php"); ?>

</head>

<body>
</body>
</html>

Note: Notice how we haven't done anything with our class yet. We will do that next.




Step 8:
Instantiate/create your object

Classes are the blueprints/templates of php objects. Classes don't actually become
objects until you do something called: instantiation.

When you instantiate a class, you create an instance of it, thus creating the object. In
other words, instantiation is the process of creating an instance of an object in
memory. What memory? The server's memory of course!

<?php include("class_lib.php"); ?>

</head>

<body>

       $stefan = new person();

</body>
</html>



Note: The variable $stefan becomes a handle/reference to our newly created person
object. I call $stefan a 'handle', because we will use $stefan to control and use the
person object.

If you run the PHP code now, you will not see anything displayed on your pages. The
reason for this, is because we have not told PHP to do anything with the object we
just created …

Step 9:
The 'new' keyword

To create an object out of a class, you need to use the 'new' keyword.

When creating/instantiating a class, you can optionally add brackets to the class
name, as I did in the example below. To be clear, you can see in the code below how
I can create multiple objects from the same class.

… From the PHP's engine point of view, each object is its' own entity. Does that
make sense?


<?php include("class_lib.php"); ?>
</head>

<body>

        $stefan = new person();

        $jimmy = new person;

</body>
</html>

Note: When creating an object, be sure not to quote the class name. For example:

$stefan = new 'person';


… will get you an error.


Step 10:
Set an objects properties

Now that we've created/instantiated our two separate 'person' objects, we can set
their properties using the methods (the setters) we created.

Please keep in mind that though both our person objects ($stefan and $nick) are
based on the same 'person' class, as far as php is concerned, they are totally
different objects.

<?php include("class_lib.php"); ?>

</head>

<body>

<?php
        $stefan = new person();

        $jimmy = new person;


        $stefan->set_name("Stefan Mischook");
        $jimmy->set_name("Nick Waddles");

?>

</body>
</html>
Step 11:
Accessing an object's data

Now we use the getter methods to access the data held in our objects … this is the
same data we inserted into our objects using the setter methods.

When accessing methods and properties of a class, you use the arrow (->) operator.

<?php include("class_lib.php"); ?>

</head>

<body>

<?php
         $stefan = new person();

         $jimmy = new person;


         $stefan->set_name("Stefan Mischook");
         $jimmy->set_name("Nick Waddles");


         echo "Stefan's full name: " . $stefan->get_name();
         echo "Nick's full name: " . $jimmy->get_name();

?>

</body>
</html>

Note: The arrow operator (->) is not the same operator used with associative arrays:
=>.

Congratulations, you've made it half way through the tutorial! Time to take a little
break and have some tea … OK, maybe some beer.

In a short period of time, you've:

     •   Designed a PHP class.
     •   Generate/created a couple of objects based on your class.
     •   Inserted data into your objects.
     •   Retrieved data from your objects.

… Not bad for your first day on the OO PHP job.

If you haven't already, now is a great time to write out the code and watch it in action
in your own PHP pages.
Step 12:
Directly accessing properties - don't do it!

You don't have to use methods to access objects properties; you can directly get to
them using the arrow operator (->) and the name of the variable.

For example: with the property $name (in object $stefan,) you could get its' value like
so:

$stefan->name.

Though doable, it is considered bad practice to do it because it can lead to trouble
down the road. You should use getter methods instead - more on that later.


<?php include("class_lib.php"); ?>

</head>

<body>

<?php
        $stefan = new person();

        $jimmy = new person;


        $stefan->set_name("Stefan Mischook");
        $jimmy->set_name("Nick Waddles");

        // directly accessing properties in a class is a no-no.
        echo "Stefan's full name: " . $stefan->name;


?>

</body>
</html>



Step 13:
Constructors

All objects can have a special built-in method called a 'constructor'. Constructors
allow you to initialise your object's properties (translation: give your properties
values,) when you instantiate (create) an object.

Note: If you create a __contruct() function (it is your choice,) PHP will automatically
call the __contruct() method/function when you create an object from your class.

The 'construct' method starts with two underscores (__) and the word 'construct'.
You 'feed' the constructor method by providing a list of arguments (like a function)
after the class name.
<?php

class person {

         var $name;


         function __construct($persons_name) {

         $this->name = $persons_name;

         }


         function set_name($new_name) {

                $this->name = $new_name;

         }

         function get_name() {

                return $this->name;

         }


}

?>




For the rest of this tutorial, I'm going to stop reminding you that:

     •   Functions = methods
     •   Variables = properties

… Since this is an OO PHP tutorial I will now use the OO terminology.


Step 14:
Create an object with a constructor

Now that we've created a constructor method, we can provide a value for the $name
property when we create our person objects.

For example:

$stefan = new person("Stefan Mischook");

This saves us from having to call the set_name() method reducing the amount of
code. Constructors are common and are used often in PHP, Java etc.

<?php include("class_lib.php"); ?>
</head>

<body>

<?php
        $stefan = new person("Stefan Mischook");


        echo "Stefan's full name: " . $stefan->get_name();


?>

</body>
</html>
This is just a tiny example of how the mechanisms built into OO PHP can
save you time and reduce the amount of code you need to write. Less code
means less bugs.


Step 15:
Restricting access to properties using ' access modifiers '

One of the fundamental principles in OOP is 'encapsulation'. The idea is that you
create cleaner better code, if you restrict access to the data structures (properties) in
your objects.

You restrict access to class properties using something called 'access modifiers'.
There are 3 access modifiers:

     1. public
     2. private
     3. protected

Public is the default modifier.


<?php

class person {


        var $name;

        public $height;
        protected $social_insurance;
        private $pinn_number;




        function __construct($persons_name) {

        $this->name = $persons_name;
}


        function set_name($new_name) {

               $this->name = $new_name;

        }

        function get_name() {

               return $this->name;

        }


}

?>

Note: When you declare a property with the 'var' keyword, it is considered
'public'.


Step 16:
Restricting access to properties: part 2

When you declare a property as 'private', only the same class can access the
property.

When a property is declared 'protected', only the same class and classes derived
from that class can access the property - this has to do with inheritance …more on
that later.

Properties declared as 'public' have no access restrictions, meaning anyone can
access them.

To help you understand this (probably) foggy aspect of OOP, try out the following
code and watch how PHP reacts. Tip: read the comments in the code for more
information:


<?php include("class_lib.php"); ?>

</head>

<body>

<?php
        $stefan = new person("Stefan Mischook");

        echo "Stefan's full name: " . $stefan->get_name();

        /*
Since $pinn_number was declared private, this line of code
        will generate an error. Try it out!
        */
        echo "Tell me private stuff: " . $stefan->$pinn_number;


?>

</body>
</html>



Step 17:
Restricting access to methods

Like properties, you can control access to methods using one of the three access
modifiers:

     1. public
     2. protected
     3. private

Why do we have access modifiers?

The reason for access modifiers comes down to control: it is makes sense to control
how people use classes.

The reasons for access modifiers and other OO constructs, can get tricky to
understand … since we are just beginners here. So give yourself a chance!

That said, I think we can summarize and say that many OOP constructs exist, with
idea the many programmers may be working on a project …

<?php

class person {


        var $name;

        public $height;
        protected $social_insurance;
        private $pinn_number;



        function __construct($persons_name) {

        $this->name = $persons_name;

        }

        private function get_pinn_number() {

               return $this->$pinn_number;

        }
}

?>

Notes: Since the method get_pinn_number() is 'private', the only place you can use
this method is in the same class - typically in another method. If you wanted to
call/use this method directly in your PHP pages, you would need to declare it 'public'.

Nerd Note: Again, it is important (as we go along,) that you actually try the code
yourself. It makes a HUGE difference!

Step 18:
Reusing code the OOP way: inheritance

Inheritance is a fundamental capability/construct in OOP where you can use one
class, as the base/basis for another class … or many other classes.

Why do it?

Doing this allows you to efficiently reuse the code found in your base class.

Say, you wanted to create a new 'employee' class … since we can say that
'employee' is a type/kind of 'person', they will share common properties and methods.

… Making some sense?

In this type of situation, inheritance can make your code lighter … because you are
reusing the same code in two different classes. But unlike 'old-school' PHP:

     1. You only have to type the code out once.
     2. The actual code being reused, can be reused in many (unlimited) classes but
        it is only typed out in one place … conceptually, this is sort-of like PHP
        includes().

Take a look at the sample code:



// 'extends' is the keyword that enables inheritance
class employee extends person {


        function __construct($employee_name) {


        }



}
Step19:
Reusing code with inheritance: part 2

Because the class 'employee' is based on the class 'person', 'employee'
automatically has all the public and protected properties and methods of 'person'.

Nerd note: Nerds would say that 'employee' is a type of person.

The code:

// 'extends' is the keyword that enables inheritance
class employee extends person {


       function __construct($employee_name) {

               $this->set_name($employee_name);
       }



}


Notice how we are able to use set_name() in 'employee', even though we did not
declare that method in the 'employee' class. That's because we already created
set_name() in the class 'person'.

Nerd Note: the 'person' class is called (by nerds,) the 'base' class or the 'parent'
class because it's the class that the 'employee' is based on. This class hierarchy can
become important down the road when your projects become more complex.

Step 20:
Reusing code with inheritance: part 3

As you can see in the code snippet below, we can call get_name on our 'employee'
object, courtesy of 'person'.

This is a classic example of how OOP can reduce the number of lines of code (don't
have to write the same methods twice) while still keeping your code modular and
much easier to maintain.

<title>OOP in PHP</title>

<?php include("class_lib.php"); ?>

</head>

<body>

<?php
// Using our PHP objects in our PHP pages.


$stefan = new person("Stefan Mischook");
echo "Stefan's full name: " . $stefan->get_name();

$james = new employee("Johnny Fingers");

echo "---> " . $james->get_name();

?>


</body>
</html>


Step 21
Overriding methods

Sometimes (when using inheritance,) you may need to change how a method works
from the base class.

For example, let's say set_name() method in the 'employee' class, had to do
something different than what it does in the 'person' class.

You 'override' the 'person' classes version of set_name(), by declaring the same
method in 'employee'.

The code:

<?php
class person {

      // explicitly adding class properties are optional - but is
good practice

       var $name;

       function __construct($persons_name) {

              $this->name = $persons_name;
       }


       public function get_name() {

              return $this->name;

       }

      //protected methods and properties restrict access to those
elements.

       protected function set_name($new_name) {

              if (name != "Jimmy Two Guns") {
              $this->name = strtoupper($new_name);
              }

       }
}

// 'extends' is the keyword that enables inheritance

class employee extends person {


       protected function set_name($new_name) {

              if ($new_name == "Stefan Sucks") {
                    $this->name = $new_name;
              }


       }

       function __construct($employee_name) {

              $this->set_name($employee_name);
       }



}



?>


Notice how set_name() is different in the 'employee' class from the version found in
the parent class: 'person'.


Step 22:
Overriding methods: part 2

Sometimes you may need to access your base class's version of a method you
overrode in the derived (sometimes called 'child') class.

In our example, we overrode the set_name() method in the 'employee' class. Now
I've now used this code :

person::set_name($new_name);

… to access the parent class' (person) version of the set_name() method.

The code:

<?php
class person {

      // explicitly adding class properties are optional - but is
good practice
var $name;

      function __construct($persons_name) {

            $this->name = $persons_name;
      }


      public function get_name() {

            return $this->name;

      }

      //protected methods and properties restrict access to those
elements.

      protected function set_name($new_name) {

            if (name != "Jimmy Two Guns") {
            $this->name = strtoupper($new_name);
            }

      }


}

// 'extends' is the keyword that enables inheritance

class employee extends person {


      protected function set_name($new_name) {

            if ($new_name == "Stefan Sucks") {
                  $this->name = $new_name;
            }
            else if($new_name == "Johnny Fingers") {
                  person::set_name($new_name);
            }

      }

      function __construct($employee_name) {

            $this->set_name($employee_name);
      }



}



?>
Step 23:
Overriding methods: part 3


Using :: allows you to specifically name the class where you want PHP to search for
a method - 'person::set_name()' tells PHP to search for set_name() in the 'person'
class.

There is also a shortcut if you just want refer to current class's parent: by using the
'parent' keyword.


The code:

<?php
class person {

      // explicitly adding class properties are optional - but is
good practice

       var $name;

       function __construct($persons_name) {

               $this->name = $persons_name;
       }


       public function get_name() {

               return $this->name;

       }

      //protected methods and properties restrict access to those
elements.

       protected function set_name($new_name) {

               if (name != "Jimmy Two Guns") {
               $this->name = strtoupper($new_name);
               }

       }


}

// 'extends' is the keyword that enables inheritance

class employee extends person {


       protected function set_name($new_name) {

               if ($new_name == "Stefan Sucks") {
                     $this->name = $new_name;
               }
else if($new_name == "Johnny Fingers") {
                     parent::set_name($new_name);
               }

       }

       function __construct($employee_name) {

               $this->set_name($employee_name);
       }



}



?>



Final Comments:
We've only touched on the basics of OO PHP. But you should have enough
information to feel comfortable moving forward.

Remember that the best way to really have this stuff sink in, is by actually writing
code for fun.

I would suggest creating say 10 simple objects that do simple things, and then use
those objects in actual PHP pages. Once you've done that, you will feel very
comfortable with objects.


Why learn OOP in PHP - another take.
For people new to OOP and are comfortable with 'classic' procedural php, you may
be wondering why should you even bother to learn object oriented concepts … why
go through the trouble?

The PHP world:

PHP is moving in an OOP direction. For example, many important PHP extensions
like PEAR and Smarty are OO based. So, to really understand and use these
frameworks properly, you need to understand object oriented PHP.

The functional/practical advantages:

For smaller projects, using object oriented PHP may be overkill. That said, object
oriented PHP really begins to shine as the project becomes more complex, and when
you have more than one person doing the programming.

For example:

If you find that you have say 10-20 or more functions and you find that some of the
functions are doing similar things … it is time to consider packaging things up into
objects and using OOP.
OOP and your career as a programmer:

OOP is the modern way of software development and all the major languages (Java,
PERL, PHP, C#, Ruby) use this method of programming. As a software
developer/programmer, it only makes sense (in terms of career,) to keep your skills
up-to-date.

Besides making you a more valuable PHP coder, understanding OOP in PHP will
give you knowledge (OOP knowledge,) that you will be able to take with you into
other languages.

… When you learn OOP in PHP, you'll learn object oriented programming for any OO
based language.

You will find with time that creating OOP based PHP projects, will just make your life
as a programmer much easier. As an added bonus, soon you will develop your own
collection of reusable objects, which you will be able to leverage in other projects.

Finally, You will also find that OOP based PHP is much easier to maintain and
update.

OOP Challenges:

OO PHP does present some challenges when you first start out because you'll need
to learn to think about your PHP projects in a different way: you will need to
conceptualise the project in terms of objects.

More details …

One common way of starting an object-oriented project is to start by drawing up
simple diagrams of your objects. As you begin to work with object diagrams, you will
find that they help make developing OOP based PHP projects much easier.

Here are a few tips about drawing object-diagrams:

   •   Use a paper and pencil
   •   Draw boxes to represent each object
   •   In those boxes, list your methods and your properties
   •   Use arrows and lines between boxes to denote relationships (parent - child)
       between objects.

So if you have been sitting on the fence waiting to jump into OO PHP, now is as good
time as any to get started.

Stefan Mischook

www.killerphp.com
www.killersites.com

More Related Content

What's hot (17)

A Gentle Introduction To Object Oriented Php
A Gentle Introduction To Object Oriented PhpA Gentle Introduction To Object Oriented Php
A Gentle Introduction To Object Oriented Php
 
Php Oop
Php OopPhp Oop
Php Oop
 
Object Oriented PHP5
Object Oriented PHP5Object Oriented PHP5
Object Oriented PHP5
 
Oops concept in php
Oops concept in phpOops concept in php
Oops concept in php
 
Object Oriented Programming in PHP
Object Oriented Programming in PHPObject Oriented Programming in PHP
Object Oriented Programming in PHP
 
tutorial54
tutorial54tutorial54
tutorial54
 
Oops concepts in php
Oops concepts in phpOops concepts in php
Oops concepts in php
 
Object oreinted php | OOPs
Object oreinted php | OOPsObject oreinted php | OOPs
Object oreinted php | OOPs
 
PHP Classes and OOPS Concept
PHP Classes and OOPS ConceptPHP Classes and OOPS Concept
PHP Classes and OOPS Concept
 
Object oriented programming in php 5
Object oriented programming in php 5Object oriented programming in php 5
Object oriented programming in php 5
 
PHP- Introduction to Object Oriented PHP
PHP-  Introduction to Object Oriented PHPPHP-  Introduction to Object Oriented PHP
PHP- Introduction to Object Oriented PHP
 
Drupal 8 templating with twig
Drupal 8 templating with twigDrupal 8 templating with twig
Drupal 8 templating with twig
 
Object Oriented Programming with PHP 5 - More OOP
Object Oriented Programming with PHP 5 - More OOPObject Oriented Programming with PHP 5 - More OOP
Object Oriented Programming with PHP 5 - More OOP
 
Introduction to OOP with PHP
Introduction to OOP with PHPIntroduction to OOP with PHP
Introduction to OOP with PHP
 
Synapseindia object oriented programming in php
Synapseindia object oriented programming in phpSynapseindia object oriented programming in php
Synapseindia object oriented programming in php
 
Php oop presentation
Php   oop presentationPhp   oop presentation
Php oop presentation
 
Class and Objects in PHP
Class and Objects in PHPClass and Objects in PHP
Class and Objects in PHP
 

Viewers also liked

Bv Eng & Agile Specs For Scrum U.Key
Bv Eng & Agile Specs For Scrum U.KeyBv Eng & Agile Specs For Scrum U.Key
Bv Eng & Agile Specs For Scrum U.KeyLeanAgileTraining
 
Technology advocate presentation: unblocking stormboard
Technology advocate presentation: unblocking stormboardTechnology advocate presentation: unblocking stormboard
Technology advocate presentation: unblocking stormboardKristan Price
 
Case Solution for Tom.com: Valuation of an Asian Internet Company
Case Solution for Tom.com: Valuation of an Asian Internet CompanyCase Solution for Tom.com: Valuation of an Asian Internet Company
Case Solution for Tom.com: Valuation of an Asian Internet Companycasesolutions12
 
Prova audio i youtube
Prova audio i youtubeProva audio i youtube
Prova audio i youtubeDaniversus
 
CombustionREFlexMorphing
CombustionREFlexMorphingCombustionREFlexMorphing
CombustionREFlexMorphingtutorialsruby
 
每週攝影學造型建檔聯誼
每週攝影學造型建檔聯誼每週攝影學造型建檔聯誼
每週攝影學造型建檔聯誼tom
 
Ben Rothke Aoa 2008 Biometrics
Ben Rothke Aoa 2008   BiometricsBen Rothke Aoa 2008   Biometrics
Ben Rothke Aoa 2008 BiometricsBen Rothke
 
Business Intelligence: The Definitive Guide
Business Intelligence: The Definitive GuideBusiness Intelligence: The Definitive Guide
Business Intelligence: The Definitive GuideFindWhitePapers
 
FSC CODED DEADLY, SATANIC, NAME ALIGNED, CIGARETTES AND SMOKING P
FSC CODED DEADLY, SATANIC, NAME ALIGNED, CIGARETTES AND SMOKING PFSC CODED DEADLY, SATANIC, NAME ALIGNED, CIGARETTES AND SMOKING P
FSC CODED DEADLY, SATANIC, NAME ALIGNED, CIGARETTES AND SMOKING PPrayer Warriors Institute
 
Managing Risk in Perilous Times- Practical Steps to Accelerate Recovery
Managing Risk in Perilous Times- Practical Steps to Accelerate RecoveryManaging Risk in Perilous Times- Practical Steps to Accelerate Recovery
Managing Risk in Perilous Times- Practical Steps to Accelerate RecoveryFindWhitePapers
 
Conceptual Stress Understanding & Management Dr Shriniwas Kashalikar
Conceptual Stress Understanding & Management Dr  Shriniwas KashalikarConceptual Stress Understanding & Management Dr  Shriniwas Kashalikar
Conceptual Stress Understanding & Management Dr Shriniwas Kashalikarbanothkishan
 

Viewers also liked (16)

Bv Eng & Agile Specs For Scrum U.Key
Bv Eng & Agile Specs For Scrum U.KeyBv Eng & Agile Specs For Scrum U.Key
Bv Eng & Agile Specs For Scrum U.Key
 
EDWARD BODENSKY-RESUME1
EDWARD BODENSKY-RESUME1EDWARD BODENSKY-RESUME1
EDWARD BODENSKY-RESUME1
 
Technology advocate presentation: unblocking stormboard
Technology advocate presentation: unblocking stormboardTechnology advocate presentation: unblocking stormboard
Technology advocate presentation: unblocking stormboard
 
Case Solution for Tom.com: Valuation of an Asian Internet Company
Case Solution for Tom.com: Valuation of an Asian Internet CompanyCase Solution for Tom.com: Valuation of an Asian Internet Company
Case Solution for Tom.com: Valuation of an Asian Internet Company
 
Prova audio i youtube
Prova audio i youtubeProva audio i youtube
Prova audio i youtube
 
CombustionREFlexMorphing
CombustionREFlexMorphingCombustionREFlexMorphing
CombustionREFlexMorphing
 
EL APRENDIZAJE FLEXIBLE
EL APRENDIZAJE FLEXIBLEEL APRENDIZAJE FLEXIBLE
EL APRENDIZAJE FLEXIBLE
 
每週攝影學造型建檔聯誼
每週攝影學造型建檔聯誼每週攝影學造型建檔聯誼
每週攝影學造型建檔聯誼
 
Ben Rothke Aoa 2008 Biometrics
Ben Rothke Aoa 2008   BiometricsBen Rothke Aoa 2008   Biometrics
Ben Rothke Aoa 2008 Biometrics
 
Acquario Di Genova
Acquario Di GenovaAcquario Di Genova
Acquario Di Genova
 
Business Intelligence: The Definitive Guide
Business Intelligence: The Definitive GuideBusiness Intelligence: The Definitive Guide
Business Intelligence: The Definitive Guide
 
FSC CODED DEADLY, SATANIC, NAME ALIGNED, CIGARETTES AND SMOKING P
FSC CODED DEADLY, SATANIC, NAME ALIGNED, CIGARETTES AND SMOKING PFSC CODED DEADLY, SATANIC, NAME ALIGNED, CIGARETTES AND SMOKING P
FSC CODED DEADLY, SATANIC, NAME ALIGNED, CIGARETTES AND SMOKING P
 
Moscu Rusia 11
Moscu   Rusia 11Moscu   Rusia 11
Moscu Rusia 11
 
Managing Risk in Perilous Times- Practical Steps to Accelerate Recovery
Managing Risk in Perilous Times- Practical Steps to Accelerate RecoveryManaging Risk in Perilous Times- Practical Steps to Accelerate Recovery
Managing Risk in Perilous Times- Practical Steps to Accelerate Recovery
 
Conceptual Stress Understanding & Management Dr Shriniwas Kashalikar
Conceptual Stress Understanding & Management Dr  Shriniwas KashalikarConceptual Stress Understanding & Management Dr  Shriniwas Kashalikar
Conceptual Stress Understanding & Management Dr Shriniwas Kashalikar
 
Pharmacy Interns
Pharmacy InternsPharmacy Interns
Pharmacy Interns
 

Similar to oop_in_php_tutorial_for_killerphp.com

Lecture-10_PHP-OOP.pptx
Lecture-10_PHP-OOP.pptxLecture-10_PHP-OOP.pptx
Lecture-10_PHP-OOP.pptxShaownRoy1
 
Constructor and encapsulation in php
Constructor and encapsulation in phpConstructor and encapsulation in php
Constructor and encapsulation in phpSHIVANI SONI
 
Oops in PHP By Nyros Developer
Oops in PHP By Nyros DeveloperOops in PHP By Nyros Developer
Oops in PHP By Nyros DeveloperNyros Technologies
 
06-classes.ppt (copy).pptx
06-classes.ppt (copy).pptx06-classes.ppt (copy).pptx
06-classes.ppt (copy).pptxThắng It
 
Embrace dynamic PHP
Embrace dynamic PHPEmbrace dynamic PHP
Embrace dynamic PHPPaul Houle
 
PHP-05-Objects.ppt
PHP-05-Objects.pptPHP-05-Objects.ppt
PHP-05-Objects.pptrani marri
 
Don't Fear the Custom Theme: How to build a custom WordPress theme with only ...
Don't Fear the Custom Theme: How to build a custom WordPress theme with only ...Don't Fear the Custom Theme: How to build a custom WordPress theme with only ...
Don't Fear the Custom Theme: How to build a custom WordPress theme with only ...LinnAlexandra
 
Introduction to PHP OOP
Introduction to PHP OOPIntroduction to PHP OOP
Introduction to PHP OOPfakhrul hasan
 
RESTful API development in Laravel 4 - Christopher Pecoraro
RESTful API development in Laravel 4 - Christopher PecoraroRESTful API development in Laravel 4 - Christopher Pecoraro
RESTful API development in Laravel 4 - Christopher PecoraroChristopher Pecoraro
 
Object Oriented PHP - PART-1
Object Oriented PHP - PART-1Object Oriented PHP - PART-1
Object Oriented PHP - PART-1Jalpesh Vasa
 
UNIT-IV WT web technology for 1st year cs
UNIT-IV WT web technology for 1st year csUNIT-IV WT web technology for 1st year cs
UNIT-IV WT web technology for 1st year csjaved75
 
Object Oriented Programming Basics with PHP
Object Oriented Programming Basics with PHPObject Oriented Programming Basics with PHP
Object Oriented Programming Basics with PHPDaniel Kline
 
Intro to OOP PHP and Github
Intro to OOP PHP and GithubIntro to OOP PHP and Github
Intro to OOP PHP and GithubJo Erik San Jose
 
Php mysql-training online-by_php2ranjan
Php mysql-training online-by_php2ranjanPhp mysql-training online-by_php2ranjan
Php mysql-training online-by_php2ranjanphp2ranjan
 

Similar to oop_in_php_tutorial_for_killerphp.com (20)

Oop in php_tutorial
Oop in php_tutorialOop in php_tutorial
Oop in php_tutorial
 
tutorial54
tutorial54tutorial54
tutorial54
 
Lecture-10_PHP-OOP.pptx
Lecture-10_PHP-OOP.pptxLecture-10_PHP-OOP.pptx
Lecture-10_PHP-OOP.pptx
 
Design patterns
Design patternsDesign patterns
Design patterns
 
Constructor and encapsulation in php
Constructor and encapsulation in phpConstructor and encapsulation in php
Constructor and encapsulation in php
 
Oops in PHP By Nyros Developer
Oops in PHP By Nyros DeveloperOops in PHP By Nyros Developer
Oops in PHP By Nyros Developer
 
06-classes.ppt (copy).pptx
06-classes.ppt (copy).pptx06-classes.ppt (copy).pptx
06-classes.ppt (copy).pptx
 
Embrace dynamic PHP
Embrace dynamic PHPEmbrace dynamic PHP
Embrace dynamic PHP
 
Php oop (1)
Php oop (1)Php oop (1)
Php oop (1)
 
PHP-05-Objects.ppt
PHP-05-Objects.pptPHP-05-Objects.ppt
PHP-05-Objects.ppt
 
Mdst 3559-02-15-php
Mdst 3559-02-15-phpMdst 3559-02-15-php
Mdst 3559-02-15-php
 
Don't Fear the Custom Theme: How to build a custom WordPress theme with only ...
Don't Fear the Custom Theme: How to build a custom WordPress theme with only ...Don't Fear the Custom Theme: How to build a custom WordPress theme with only ...
Don't Fear the Custom Theme: How to build a custom WordPress theme with only ...
 
Introduction to PHP OOP
Introduction to PHP OOPIntroduction to PHP OOP
Introduction to PHP OOP
 
RESTful API development in Laravel 4 - Christopher Pecoraro
RESTful API development in Laravel 4 - Christopher PecoraroRESTful API development in Laravel 4 - Christopher Pecoraro
RESTful API development in Laravel 4 - Christopher Pecoraro
 
Object Oriented PHP - PART-1
Object Oriented PHP - PART-1Object Oriented PHP - PART-1
Object Oriented PHP - PART-1
 
OOP
OOPOOP
OOP
 
UNIT-IV WT web technology for 1st year cs
UNIT-IV WT web technology for 1st year csUNIT-IV WT web technology for 1st year cs
UNIT-IV WT web technology for 1st year cs
 
Object Oriented Programming Basics with PHP
Object Oriented Programming Basics with PHPObject Oriented Programming Basics with PHP
Object Oriented Programming Basics with PHP
 
Intro to OOP PHP and Github
Intro to OOP PHP and GithubIntro to OOP PHP and Github
Intro to OOP PHP and Github
 
Php mysql-training online-by_php2ranjan
Php mysql-training online-by_php2ranjanPhp mysql-training online-by_php2ranjan
Php mysql-training online-by_php2ranjan
 

More from tutorialsruby

&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />tutorialsruby
 
TopStyle Help &amp; &lt;b>Tutorial&lt;/b>
TopStyle Help &amp; &lt;b>Tutorial&lt;/b>TopStyle Help &amp; &lt;b>Tutorial&lt;/b>
TopStyle Help &amp; &lt;b>Tutorial&lt;/b>tutorialsruby
 
The Art Institute of Atlanta IMD 210 Fundamentals of Scripting &lt;b>...&lt;/b>
The Art Institute of Atlanta IMD 210 Fundamentals of Scripting &lt;b>...&lt;/b>The Art Institute of Atlanta IMD 210 Fundamentals of Scripting &lt;b>...&lt;/b>
The Art Institute of Atlanta IMD 210 Fundamentals of Scripting &lt;b>...&lt;/b>tutorialsruby
 
&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />tutorialsruby
 
&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />tutorialsruby
 
Standardization and Knowledge Transfer – INS0
Standardization and Knowledge Transfer – INS0Standardization and Knowledge Transfer – INS0
Standardization and Knowledge Transfer – INS0tutorialsruby
 
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa0602690047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269tutorialsruby
 
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa0602690047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269tutorialsruby
 
BloggingWithStyle_2008
BloggingWithStyle_2008BloggingWithStyle_2008
BloggingWithStyle_2008tutorialsruby
 
BloggingWithStyle_2008
BloggingWithStyle_2008BloggingWithStyle_2008
BloggingWithStyle_2008tutorialsruby
 
cascadingstylesheets
cascadingstylesheetscascadingstylesheets
cascadingstylesheetstutorialsruby
 
cascadingstylesheets
cascadingstylesheetscascadingstylesheets
cascadingstylesheetstutorialsruby
 

More from tutorialsruby (20)

&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />
 
TopStyle Help &amp; &lt;b>Tutorial&lt;/b>
TopStyle Help &amp; &lt;b>Tutorial&lt;/b>TopStyle Help &amp; &lt;b>Tutorial&lt;/b>
TopStyle Help &amp; &lt;b>Tutorial&lt;/b>
 
The Art Institute of Atlanta IMD 210 Fundamentals of Scripting &lt;b>...&lt;/b>
The Art Institute of Atlanta IMD 210 Fundamentals of Scripting &lt;b>...&lt;/b>The Art Institute of Atlanta IMD 210 Fundamentals of Scripting &lt;b>...&lt;/b>
The Art Institute of Atlanta IMD 210 Fundamentals of Scripting &lt;b>...&lt;/b>
 
&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />
 
&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />
 
Standardization and Knowledge Transfer – INS0
Standardization and Knowledge Transfer – INS0Standardization and Knowledge Transfer – INS0
Standardization and Knowledge Transfer – INS0
 
xhtml_basics
xhtml_basicsxhtml_basics
xhtml_basics
 
xhtml_basics
xhtml_basicsxhtml_basics
xhtml_basics
 
xhtml-documentation
xhtml-documentationxhtml-documentation
xhtml-documentation
 
xhtml-documentation
xhtml-documentationxhtml-documentation
xhtml-documentation
 
CSS
CSSCSS
CSS
 
CSS
CSSCSS
CSS
 
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa0602690047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
 
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa0602690047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
 
HowTo_CSS
HowTo_CSSHowTo_CSS
HowTo_CSS
 
HowTo_CSS
HowTo_CSSHowTo_CSS
HowTo_CSS
 
BloggingWithStyle_2008
BloggingWithStyle_2008BloggingWithStyle_2008
BloggingWithStyle_2008
 
BloggingWithStyle_2008
BloggingWithStyle_2008BloggingWithStyle_2008
BloggingWithStyle_2008
 
cascadingstylesheets
cascadingstylesheetscascadingstylesheets
cascadingstylesheets
 
cascadingstylesheets
cascadingstylesheetscascadingstylesheets
cascadingstylesheets
 

Recently uploaded

The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch TuesdayIvanti
 
Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Kaya Weers
 
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...itnewsafrica
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfIngrid Airi González
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentPim van der Noll
 
Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024TopCSSGallery
 
Bridging Between CAD & GIS: 6 Ways to Automate Your Data Integration
Bridging Between CAD & GIS:  6 Ways to Automate Your Data IntegrationBridging Between CAD & GIS:  6 Ways to Automate Your Data Integration
Bridging Between CAD & GIS: 6 Ways to Automate Your Data Integrationmarketing932765
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesThousandEyes
 
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Nikki Chapple
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsRavi Sanghani
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesKari Kakkonen
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Alkin Tezuysal
 

Recently uploaded (20)

The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch Tuesday
 
Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)
 
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdf
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
 
Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024
 
Bridging Between CAD & GIS: 6 Ways to Automate Your Data Integration
Bridging Between CAD & GIS:  6 Ways to Automate Your Data IntegrationBridging Between CAD & GIS:  6 Ways to Automate Your Data Integration
Bridging Between CAD & GIS: 6 Ways to Automate Your Data Integration
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
 
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and Insights
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examples
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
 

oop_in_php_tutorial_for_killerphp.com

  • 1. Learn Object Oriented Programming (OOP) in PHP By: Stefan Mischook - September 07 2007 www.killerphp.com - www.killersites.com - www.idea22.com Preamble: The hardest thing to learn (and teach btw,) in object oriented PHP … is the basics. But once you get them under-your-belt, the rest will come much, much easier. But don't be discouraged! You just found the easiest to understand tutorial out there on OOP and PHP. It may sound like a boastful claim … I know. But that's what the nerd zeitgeist is saying. … Or so I've been told. Videos: As an extra bonus, I've created a few video tutorials for you. They cover the same material as the written article and are designed to reinforce the article. • Introduction to Object Oriented PHP (4:05) • Why learn Object Oriented PHP (14:46) • Objects and Classes in PHP (5:26) • Build Objects in PHP - Part 1 (9:14) • Build Objects in PHP - Part 2 (9:41) • Build Objects in PHP - Part 3 (6:18) If you have questions/comments, you can contact me at: stefan@killersites.com Thanks, Stefan Mischook Learn Object Oriented Programming (OOP) in PHP Object-Oriented Programming (OOP) is a type of programming added to php5 that makes building complex, modular and reusable web applications that much easier. With the release of php5, php programmers finally had the power to code with the 'big boys'. Like Java and C#, php finally has a complete OOP infrastructure.
  • 2. In this tutorial, you will be guided (step-by-step) through the process of building and working with objects using php's built-in OOP capabilities. At the same time you will learn: • The difference between building a php application the old fashioned (procedural) way, versus the OOP way. • What the basic OOP principles are, and how to use them in PHP. • When you would want to use OOP in your PHP scripts. People run into confusion when programming because of some lack of understanding of the basics. With this in mind, we are going to slowly go over key OOP principles while creating our own PHP objects. With this knowledge, you will be able to explore OOP further. For this tutorial, you should understand a few PHP basics: functions, variables, conditionals and loops. To make things easy, the tutorial is divided into 23 steps. Step 1: First thing we need to do is create two PHP pages: index.php class_lib.php OOP is all about creating modular code, so our object oriented PHP code will be contained in dedicated files that we will then insert into our normal PHP page using php 'includes'. In this case all our OO PHP code will be in the PHP file: class_lib.php OOP revolves around a construct called a 'class'. Classes are the cookie-cutters / templates that are used to define objects. Step 2: Create a PHP class Instead of having a bunch of functions, variables and code floating around willy-nilly, to design your php scripts or code libraries the OOP way, you'll need to define/create your own classes. You define your own class by starting with the keyword 'class' followed by the name you want to give your new class. <?php
  • 3. class person { } ?> Step 3: Add data to your class Classes are the blueprints for php objects - more on that later. One of the big differences between functions and classes is that a class contains both data (variables) and functions that form a package called an: 'object'. When you create a variable inside a class, it is called a 'property'. <?php class person { var name; } ?> Note: The data/variables inside a class (ex: var name;) are called 'properties'. Step 4: Add functions/methods to your class In the same way that variables get a different name when created inside a class (they are called: properties,) functions also referred to (by nerds) by a different name when created inside a class - they are called 'methods'. A classes' methods are used to manipulate its' own data / properties. <?php class person { var $name; function set_name($new_name) { $this->name = $new_name; }
  • 4. function get_name() { return $this->name; } } ?> Note: Don't forget that in a class, variables are called 'properties'. Step 5 Getter and setter functions We've created two interesting functions/methods: get_name() and set_name(). These methods follow a common OOP convention that you see in many languages (including Java and Ruby) - where you create methods to 'set' and 'get' properties in a class. Another convention (a naming convention,) is that getter and setter names should match the property names. <?php class person { var $name; function set_name($new_name) { $this->name = $new_name; } function get_name() { return $this->name; } } ?> Note: Notice that the getter and setter names, match the associated property name. This way, when other PHP programmers want to use your objects, they will know that if you have a method/function called 'set_name()', there will be a property/variable called 'name'.
  • 5. Step 6: The '$this' variable You probably noticed this line of code: $this->name = $new_name. The $this is a built-in variable (built into all objects) which points to the current object. Or in other words, $this is a special self-referencing variable. You use $this to access properties and to call other methods of the current class. function get_name() { return $this->name; } Note: This may be a bit confusing for some of you … that's because you are seeing for the first time, one of those built in OO capabilities (built into PHP5 itself) that automatically does stuff for us. For now, just think of $this as a special OO PHP keyword. When PHP comes across $this, the PHP engine knows what to do. … Hopefully soon, you will too! Step 7: Include your class in your main PHP page. You would never create your PHP classes directly inside your main php pages - that would help defeat the purposes of object oriented PHP in the first place! Instead, it is always best practice to create separate php pages that only contain your classes. Then you would access your php objects/classes by including them in your main php pages with either a php 'include' or 'require'. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859- 1" /> <title>OOP in PHP</title> <?php include("class_lib.php"); ?> </head> <body>
  • 6. </body> </html> Note: Notice how we haven't done anything with our class yet. We will do that next. Step 8: Instantiate/create your object Classes are the blueprints/templates of php objects. Classes don't actually become objects until you do something called: instantiation. When you instantiate a class, you create an instance of it, thus creating the object. In other words, instantiation is the process of creating an instance of an object in memory. What memory? The server's memory of course! <?php include("class_lib.php"); ?> </head> <body> $stefan = new person(); </body> </html> Note: The variable $stefan becomes a handle/reference to our newly created person object. I call $stefan a 'handle', because we will use $stefan to control and use the person object. If you run the PHP code now, you will not see anything displayed on your pages. The reason for this, is because we have not told PHP to do anything with the object we just created … Step 9: The 'new' keyword To create an object out of a class, you need to use the 'new' keyword. When creating/instantiating a class, you can optionally add brackets to the class name, as I did in the example below. To be clear, you can see in the code below how I can create multiple objects from the same class. … From the PHP's engine point of view, each object is its' own entity. Does that make sense? <?php include("class_lib.php"); ?>
  • 7. </head> <body> $stefan = new person(); $jimmy = new person; </body> </html> Note: When creating an object, be sure not to quote the class name. For example: $stefan = new 'person'; … will get you an error. Step 10: Set an objects properties Now that we've created/instantiated our two separate 'person' objects, we can set their properties using the methods (the setters) we created. Please keep in mind that though both our person objects ($stefan and $nick) are based on the same 'person' class, as far as php is concerned, they are totally different objects. <?php include("class_lib.php"); ?> </head> <body> <?php $stefan = new person(); $jimmy = new person; $stefan->set_name("Stefan Mischook"); $jimmy->set_name("Nick Waddles"); ?> </body> </html>
  • 8. Step 11: Accessing an object's data Now we use the getter methods to access the data held in our objects … this is the same data we inserted into our objects using the setter methods. When accessing methods and properties of a class, you use the arrow (->) operator. <?php include("class_lib.php"); ?> </head> <body> <?php $stefan = new person(); $jimmy = new person; $stefan->set_name("Stefan Mischook"); $jimmy->set_name("Nick Waddles"); echo "Stefan's full name: " . $stefan->get_name(); echo "Nick's full name: " . $jimmy->get_name(); ?> </body> </html> Note: The arrow operator (->) is not the same operator used with associative arrays: =>. Congratulations, you've made it half way through the tutorial! Time to take a little break and have some tea … OK, maybe some beer. In a short period of time, you've: • Designed a PHP class. • Generate/created a couple of objects based on your class. • Inserted data into your objects. • Retrieved data from your objects. … Not bad for your first day on the OO PHP job. If you haven't already, now is a great time to write out the code and watch it in action in your own PHP pages.
  • 9. Step 12: Directly accessing properties - don't do it! You don't have to use methods to access objects properties; you can directly get to them using the arrow operator (->) and the name of the variable. For example: with the property $name (in object $stefan,) you could get its' value like so: $stefan->name. Though doable, it is considered bad practice to do it because it can lead to trouble down the road. You should use getter methods instead - more on that later. <?php include("class_lib.php"); ?> </head> <body> <?php $stefan = new person(); $jimmy = new person; $stefan->set_name("Stefan Mischook"); $jimmy->set_name("Nick Waddles"); // directly accessing properties in a class is a no-no. echo "Stefan's full name: " . $stefan->name; ?> </body> </html> Step 13: Constructors All objects can have a special built-in method called a 'constructor'. Constructors allow you to initialise your object's properties (translation: give your properties values,) when you instantiate (create) an object. Note: If you create a __contruct() function (it is your choice,) PHP will automatically call the __contruct() method/function when you create an object from your class. The 'construct' method starts with two underscores (__) and the word 'construct'. You 'feed' the constructor method by providing a list of arguments (like a function) after the class name.
  • 10. <?php class person { var $name; function __construct($persons_name) { $this->name = $persons_name; } function set_name($new_name) { $this->name = $new_name; } function get_name() { return $this->name; } } ?> For the rest of this tutorial, I'm going to stop reminding you that: • Functions = methods • Variables = properties … Since this is an OO PHP tutorial I will now use the OO terminology. Step 14: Create an object with a constructor Now that we've created a constructor method, we can provide a value for the $name property when we create our person objects. For example: $stefan = new person("Stefan Mischook"); This saves us from having to call the set_name() method reducing the amount of code. Constructors are common and are used often in PHP, Java etc. <?php include("class_lib.php"); ?>
  • 11. </head> <body> <?php $stefan = new person("Stefan Mischook"); echo "Stefan's full name: " . $stefan->get_name(); ?> </body> </html> This is just a tiny example of how the mechanisms built into OO PHP can save you time and reduce the amount of code you need to write. Less code means less bugs. Step 15: Restricting access to properties using ' access modifiers ' One of the fundamental principles in OOP is 'encapsulation'. The idea is that you create cleaner better code, if you restrict access to the data structures (properties) in your objects. You restrict access to class properties using something called 'access modifiers'. There are 3 access modifiers: 1. public 2. private 3. protected Public is the default modifier. <?php class person { var $name; public $height; protected $social_insurance; private $pinn_number; function __construct($persons_name) { $this->name = $persons_name;
  • 12. } function set_name($new_name) { $this->name = $new_name; } function get_name() { return $this->name; } } ?> Note: When you declare a property with the 'var' keyword, it is considered 'public'. Step 16: Restricting access to properties: part 2 When you declare a property as 'private', only the same class can access the property. When a property is declared 'protected', only the same class and classes derived from that class can access the property - this has to do with inheritance …more on that later. Properties declared as 'public' have no access restrictions, meaning anyone can access them. To help you understand this (probably) foggy aspect of OOP, try out the following code and watch how PHP reacts. Tip: read the comments in the code for more information: <?php include("class_lib.php"); ?> </head> <body> <?php $stefan = new person("Stefan Mischook"); echo "Stefan's full name: " . $stefan->get_name(); /*
  • 13. Since $pinn_number was declared private, this line of code will generate an error. Try it out! */ echo "Tell me private stuff: " . $stefan->$pinn_number; ?> </body> </html> Step 17: Restricting access to methods Like properties, you can control access to methods using one of the three access modifiers: 1. public 2. protected 3. private Why do we have access modifiers? The reason for access modifiers comes down to control: it is makes sense to control how people use classes. The reasons for access modifiers and other OO constructs, can get tricky to understand … since we are just beginners here. So give yourself a chance! That said, I think we can summarize and say that many OOP constructs exist, with idea the many programmers may be working on a project … <?php class person { var $name; public $height; protected $social_insurance; private $pinn_number; function __construct($persons_name) { $this->name = $persons_name; } private function get_pinn_number() { return $this->$pinn_number; }
  • 14. } ?> Notes: Since the method get_pinn_number() is 'private', the only place you can use this method is in the same class - typically in another method. If you wanted to call/use this method directly in your PHP pages, you would need to declare it 'public'. Nerd Note: Again, it is important (as we go along,) that you actually try the code yourself. It makes a HUGE difference! Step 18: Reusing code the OOP way: inheritance Inheritance is a fundamental capability/construct in OOP where you can use one class, as the base/basis for another class … or many other classes. Why do it? Doing this allows you to efficiently reuse the code found in your base class. Say, you wanted to create a new 'employee' class … since we can say that 'employee' is a type/kind of 'person', they will share common properties and methods. … Making some sense? In this type of situation, inheritance can make your code lighter … because you are reusing the same code in two different classes. But unlike 'old-school' PHP: 1. You only have to type the code out once. 2. The actual code being reused, can be reused in many (unlimited) classes but it is only typed out in one place … conceptually, this is sort-of like PHP includes(). Take a look at the sample code: // 'extends' is the keyword that enables inheritance class employee extends person { function __construct($employee_name) { } }
  • 15. Step19: Reusing code with inheritance: part 2 Because the class 'employee' is based on the class 'person', 'employee' automatically has all the public and protected properties and methods of 'person'. Nerd note: Nerds would say that 'employee' is a type of person. The code: // 'extends' is the keyword that enables inheritance class employee extends person { function __construct($employee_name) { $this->set_name($employee_name); } } Notice how we are able to use set_name() in 'employee', even though we did not declare that method in the 'employee' class. That's because we already created set_name() in the class 'person'. Nerd Note: the 'person' class is called (by nerds,) the 'base' class or the 'parent' class because it's the class that the 'employee' is based on. This class hierarchy can become important down the road when your projects become more complex. Step 20: Reusing code with inheritance: part 3 As you can see in the code snippet below, we can call get_name on our 'employee' object, courtesy of 'person'. This is a classic example of how OOP can reduce the number of lines of code (don't have to write the same methods twice) while still keeping your code modular and much easier to maintain. <title>OOP in PHP</title> <?php include("class_lib.php"); ?> </head> <body> <?php // Using our PHP objects in our PHP pages. $stefan = new person("Stefan Mischook");
  • 16. echo "Stefan's full name: " . $stefan->get_name(); $james = new employee("Johnny Fingers"); echo "---> " . $james->get_name(); ?> </body> </html> Step 21 Overriding methods Sometimes (when using inheritance,) you may need to change how a method works from the base class. For example, let's say set_name() method in the 'employee' class, had to do something different than what it does in the 'person' class. You 'override' the 'person' classes version of set_name(), by declaring the same method in 'employee'. The code: <?php class person { // explicitly adding class properties are optional - but is good practice var $name; function __construct($persons_name) { $this->name = $persons_name; } public function get_name() { return $this->name; } //protected methods and properties restrict access to those elements. protected function set_name($new_name) { if (name != "Jimmy Two Guns") { $this->name = strtoupper($new_name); } }
  • 17. } // 'extends' is the keyword that enables inheritance class employee extends person { protected function set_name($new_name) { if ($new_name == "Stefan Sucks") { $this->name = $new_name; } } function __construct($employee_name) { $this->set_name($employee_name); } } ?> Notice how set_name() is different in the 'employee' class from the version found in the parent class: 'person'. Step 22: Overriding methods: part 2 Sometimes you may need to access your base class's version of a method you overrode in the derived (sometimes called 'child') class. In our example, we overrode the set_name() method in the 'employee' class. Now I've now used this code : person::set_name($new_name); … to access the parent class' (person) version of the set_name() method. The code: <?php class person { // explicitly adding class properties are optional - but is good practice
  • 18. var $name; function __construct($persons_name) { $this->name = $persons_name; } public function get_name() { return $this->name; } //protected methods and properties restrict access to those elements. protected function set_name($new_name) { if (name != "Jimmy Two Guns") { $this->name = strtoupper($new_name); } } } // 'extends' is the keyword that enables inheritance class employee extends person { protected function set_name($new_name) { if ($new_name == "Stefan Sucks") { $this->name = $new_name; } else if($new_name == "Johnny Fingers") { person::set_name($new_name); } } function __construct($employee_name) { $this->set_name($employee_name); } } ?>
  • 19. Step 23: Overriding methods: part 3 Using :: allows you to specifically name the class where you want PHP to search for a method - 'person::set_name()' tells PHP to search for set_name() in the 'person' class. There is also a shortcut if you just want refer to current class's parent: by using the 'parent' keyword. The code: <?php class person { // explicitly adding class properties are optional - but is good practice var $name; function __construct($persons_name) { $this->name = $persons_name; } public function get_name() { return $this->name; } //protected methods and properties restrict access to those elements. protected function set_name($new_name) { if (name != "Jimmy Two Guns") { $this->name = strtoupper($new_name); } } } // 'extends' is the keyword that enables inheritance class employee extends person { protected function set_name($new_name) { if ($new_name == "Stefan Sucks") { $this->name = $new_name; }
  • 20. else if($new_name == "Johnny Fingers") { parent::set_name($new_name); } } function __construct($employee_name) { $this->set_name($employee_name); } } ?> Final Comments: We've only touched on the basics of OO PHP. But you should have enough information to feel comfortable moving forward. Remember that the best way to really have this stuff sink in, is by actually writing code for fun. I would suggest creating say 10 simple objects that do simple things, and then use those objects in actual PHP pages. Once you've done that, you will feel very comfortable with objects. Why learn OOP in PHP - another take. For people new to OOP and are comfortable with 'classic' procedural php, you may be wondering why should you even bother to learn object oriented concepts … why go through the trouble? The PHP world: PHP is moving in an OOP direction. For example, many important PHP extensions like PEAR and Smarty are OO based. So, to really understand and use these frameworks properly, you need to understand object oriented PHP. The functional/practical advantages: For smaller projects, using object oriented PHP may be overkill. That said, object oriented PHP really begins to shine as the project becomes more complex, and when you have more than one person doing the programming. For example: If you find that you have say 10-20 or more functions and you find that some of the functions are doing similar things … it is time to consider packaging things up into objects and using OOP.
  • 21. OOP and your career as a programmer: OOP is the modern way of software development and all the major languages (Java, PERL, PHP, C#, Ruby) use this method of programming. As a software developer/programmer, it only makes sense (in terms of career,) to keep your skills up-to-date. Besides making you a more valuable PHP coder, understanding OOP in PHP will give you knowledge (OOP knowledge,) that you will be able to take with you into other languages. … When you learn OOP in PHP, you'll learn object oriented programming for any OO based language. You will find with time that creating OOP based PHP projects, will just make your life as a programmer much easier. As an added bonus, soon you will develop your own collection of reusable objects, which you will be able to leverage in other projects. Finally, You will also find that OOP based PHP is much easier to maintain and update. OOP Challenges: OO PHP does present some challenges when you first start out because you'll need to learn to think about your PHP projects in a different way: you will need to conceptualise the project in terms of objects. More details … One common way of starting an object-oriented project is to start by drawing up simple diagrams of your objects. As you begin to work with object diagrams, you will find that they help make developing OOP based PHP projects much easier. Here are a few tips about drawing object-diagrams: • Use a paper and pencil • Draw boxes to represent each object • In those boxes, list your methods and your properties • Use arrows and lines between boxes to denote relationships (parent - child) between objects. So if you have been sitting on the fence waiting to jump into OO PHP, now is as good time as any to get started. Stefan Mischook www.killerphp.com www.killersites.com