BaseObject.object
上传用户:xiao730204
上传日期:2007-01-04
资源大小:141k
文件大小:0k
源码类别:

WEB邮件程序

开发平台:

PHP

  1. <?php
  2. class BaseObject {
  3.    var $my_type;
  4.    Function BaseObject( $type = 'BaseObject' ) {
  5.       $this->my_type          = $type;
  6.    }
  7.    Function Type() {
  8.       return $this->my_type;
  9.    }
  10.    Function toString() {
  11.       return serialize( $this );
  12.    }
  13. }
  14. ?>