Mega Code Archive

 
Categories / Php / Class
 

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(); ?>