A Basic PHP 4 Class : Class Definition « Class « PHP






A Basic PHP 4 Class

 
<?php
    class myPHP4Class {
        var $my_variable;
        function my_method($param) {
            echo "my_method($param)!\n";
            echo "my variable is: ";
            echo "{$this->my_variable}\n";
        }
    }

     $myinstance = new myPHP4Class();
     $anotherinstance = new myPHP4Class();
?>
  
  








Related examples in the same category

1.A Basic PHP 5 Class
2.A class is a collection of variables and functions working with these variables.
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