Documentation is available at Object.php
- <?php
- // ----------------------------------------------------------------------------------
- // Class: Object
- // ----------------------------------------------------------------------------------
- /**
- * An abstract object.
- * Root object with some general methods, that should be overloaded.
- *
- * <BR><BR>
- * History:<UL>
- * <li>09-10-2002 : First version of this class.</li>
- * </UL>
- *
- *
- * @version V0.9.1
- * @author Chris Bizer <chris@bizer.de>
- *
- * @abstract
- * @package utility
- *
- */
- class Object {
- /**
- * Serializes a object into a string
- *
- * @access public
- * @return string
- */
- function toString() {
- $objectvars = get_object_vars($this);
- foreach($objectvars as $key => $value)
- $content .= $key ."='". $value. "'; ";
- return "Instance of " . get_class($this) ."; Properties: ". $content;
- }
- }
- ?>
Documentation generated on Fri, 17 Dec 2004 16:16:24 +0100 by phpDocumentor 1.3.0RC3