Defining an object constructor : Constructor « Class « PHP






Defining an object constructor

 
class user {
  public $username;

  function __construct($username, $password) { 
     if ($this->validate_user($username, $password)) {
       $this->username = $username;
     }
  }
}

$user = new user('A', 'M');
  
  








Related examples in the same category

1.Instantiate class by calling the constructor
2.Define and use constructor
3.Define class as constructor parameter
4.Define Constructor for Class
5.A Class with a Constructor
6.Adding a Constructor to PriceItem
7.Calling the constructor of the parent class
8.Constructors and Destructors
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