Instantiate class by calling the constructor : Constructor « Class « PHP






Instantiate class by calling the constructor


<?php
   class Staff
   {
      private $ein;
      function __construct($ein)
      {
         if ($this->verify_ein($ein)) {
            echo "called";
         }
      }
   
      protected function verify_ein($ein)
      {
         return TRUE;
      }
   }

   $employee = new Staff("123");

?>

           
       








Related examples in the same category

1.Define and use constructor
2.Define class as constructor parameter
3.Define Constructor for Class
4.A Class with a Constructor
5.Adding a Constructor to PriceItem
6.Calling the constructor of the parent class
7.Constructors and Destructors
8.Defining an object constructor
9.Creating the Cat constructor
10.Defining object constructors in PHP 4
11.Using the PHP 5 style constructor
12.invoking parent constructors
13.Using Unified Constructors and Destructors
14.Using Default Constructors