* [MYVAR] * value1 * value2 * value3 *
"); var_dump($v); if (func_num_args()>2) { for ($i=2;$i
\n\n"); } /** * Returns a lower-cased version of get_class for PHP 5 * * get_class() returns case as declared in the file in PHP 5 * * @param object $object the object to get the classname for * * @return string the class name of the given object * @todo CS cleanup - rename function to PhpDocumentor_get_class */ function phpDocumentor_get_class($object) { if (is_object($object)) { return strtolower(get_class($object)); } return false; } ?>