Constructors and Destructors : Constructor « Class « PHP
- PHP
- Class
- Constructor
Constructors and Destructors
<?php
class SimpleClass {
function SimpleClass($param) {
echo "Created a new instance of SimpleClass!";
}
}
$myinstance = new SimpleClass;
?>
Related examples in the same category