Mega Code Archive

 
Categories / Php / Class
 

Constructors and Destructors

<?php      class SimpleClass {           function SimpleClass($param) {                echo "Created a new instance of SimpleClass!";           }      }      $myinstance = new SimpleClass; ?>