A class is a collection of variables and functions working with these variables. : Class Definition « Class « PHP






A class is a collection of variables and functions working with these variables.

 
<?php
class Cart {
    var $items; 
    
    function add_item ($artnr, $num) {
        $this->items[$artnr] += $num;
    }

    function remove_item ($artnr, $num) {
        if ($this->items[$artnr] > $num) {
            $this->items[$artnr] -= $num;
            return true;
        } else {
            return false;
        }
    }
}
class Named_Cart extends Cart {
    var $owner;
    function set_owner ($name) {
        $this->owner = $name;
    }
}


$ncart = new Named_Cart; 
$ncart->set_owner ("kris"); 
print $ncart->owner; 
$ncart->add_item ("10", 1); 
?>
  
  








Related examples in the same category

1.A Basic PHP 4 Class
2.A Basic PHP 5 Class
3.Aggregating an address object
4.Bird class
5.Basic Object Accessing
6.Class Type Hints
7.Implementing a Simple Class
8.Person class
9.PHP class declaration structure
10.book class
11.Pre-defined methods
12.Using an aggregated class
13.Empty class