コード例 #1
0
ファイル: Student.php プロジェクト: xiehaowei/php
 public function __construct($name, $age, $sex = 'male', $class = 'PHP Developer')
 {
     $this->sid = redis::getInstance()->incr('Student_SID_INCR_KEY');
     $this->name = $name;
     $this->age = $age;
     $this->sex = $sex;
     $this->class = $class;
 }