Unfinished activity ('quantified self') tracker
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617181920212223
  1. <?PHP
  2. class Event {
  3. private $data;
  4. private $time;
  5. public function __construct($time, $data) {
  6. $this->time = $time;
  7. $this->data = $data;
  8. }
  9. public function getTime() {
  10. return $this->time;
  11. }
  12. public function getData() {
  13. return $this->data;
  14. }
  15. }
  16. ?>