Login   Register  
PHP Classes
elePHPant
Icontem

File: MyClass.class.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Stephan Beal  >  PHPClassLoader  >  MyClass.class.php  >  Download  
File: MyClass.class.php
Role: ???
Content type: text/plain
Description: test class for classload() and ext_include()
Class: PHPClassLoader
Author: By
Last change:
Date: 2001-08-14 05:28
Size: 162 bytes
 

Contents

Class file image Download
<?

  class MyClass {

	function MyClass() { echo "MyClass instantiated!<br>"; }

	function foo() {
		echo "called MyClass->foo()<br>";
	}

  }	

?>