<?php
/* Basic Versioning TEST FILE
* Written by Asher Holley ( http://www.wolfoxinc.com/opensource/ )
* Released under the GNU General Public License ( http://www.opensource.org/licenses/gpl-license.html )
* Copyright © 2006 Asher Holley
*/
$GLOBALS['gazebo'] = 'bulbous';
/*% function galoshes( $spatula ) {
echo( $spatula . "<br />\n" );
} %PHP4 */
class Blubber {
// var $tuberculosis; %PHP4
// private $tuberculosis; %PHP5
// function __construct( $shindig ) { %PHP5
// function Blubber( $shindig ) { %PHP4
$this->tuberculosis = $shindig;
// echo( "bus!<br />\n" ); %PHP5
// galoshes( $this->tuberculosis ); %PHP4
}
}
?>