コード例 #1
0
 public function __construct($key, $secret, $ttl = 3600, $user_id = NULL)
 {
     parent::__construct($key, $secret);
     $this->ttl = $ttl;
     $this->user_id = $user_id;
 }
コード例 #2
0
 function __construct($key, $secret, $id = NULL, $uid = NULL)
 {
     $this->id = $id;
     $this->uid = $uid;
     parent::__construct($key, $secret);
 }