<?php
//--------------------------------
// Name: DemoClass
// Author: Your Name Here
// Description:
// this is the description of
// the class, it is very long
// to test the word wrap in
// my code
//
//--------------------------------
// This class was created by
// -- JPClassCreator --
//
// By Jonathan Pulice, Please
// Leave these credits intact.
//
// Created: Aug 10, 05 at 12:15 am
//--------------------------------
class DemoClass
{
// ----------------------------------
// --- Class Variables --------------
var $var1 = "demo"; // demo variable
var $var2 = 15; // demo variable
var $var3 = array(); // demo variable
// ----------------------------------
// --- Class Functions --------------
// Name: DemoFnc
// Desc: this is a demo of a function
function DemoFnc( $param1 , $param2 )
{
echo "this is a demo function called {$param1}";
return true;
}
// ----------------------------------
} //End Of Class
?> |