예제 #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;
 }