| Recommend this page to a friend! |
| Classes of Stephan Beal | > | PHPClassLoader | > | MyClass.class.php | > | Download | ||
|
|||||||||||||||||||||
<?
class MyClass {
function MyClass() { echo "MyClass instantiated!<br>"; }
function foo() {
echo "called MyClass->foo()<br>";
}
}
?>
|