"void", "bool" => "bool", "boolean" => "bool", "int" => "int", "integer" => "int", "float" => "float", "double" => "float", "real" => "float", "string" => "string", "array" => "array", "object" => "object", "resource" => "resource", "mixed" => "mixes", ); if(isset($types[$name])) { return $types[$name]; } else { return false; } } function is_name($name) { if(ereg("[a-zA-Z0-9_]",$name)) { // TODO reserved words return true; } return false; } function c_code() { return ""; } function h_code() { return ""; } function docbook_xml() { return ""; } function docbook_editor_footer($level=3) { return ' '; } } ?>