예제 #1
0
 public function __construct($options = null)
 {
     parent::__construct();
     $this->_last_id = 0;
     if (is_array($options)) {
         $this->create($options);
     }
 }
예제 #2
0
 public function __construct(array $options = null)
 {
     parent::__construct();
     $this->last_id = 0;
     if (is_array($options)) {
         return $this->create($options);
     }
     return true;
 }
예제 #3
0
파일: User.php 프로젝트: alex731/m12private
 public function __construct(array $options = null)
 {
     parent::__construct($options);
 }