PHP 클래스 Phalcon\Session\Adapter\HandlerSocket

상속: extends Phalcon\Session\Adapter, implements Phalcon\Session\AdapterInterface
파일 보기 프로젝트 열기: phalcon/incubator 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$fields array Stores session data results
$hs HandlerSocket HandlerSocket object
$hsIndex integer HandlerSocket index number
$options =====> (string) cookie_domain : the domain for which the cookie is valid. =====> (int) lifetime : session lifetime in seconds =====> (array) server : an array of mysql handlersocket server : 'host' => (string) : the name of the mysql handlersocket server 'port' => (int) : the port of the mysql handlersocket server 'dbname' => (string) : the database name of the mysql handlersocket server 'dbtable' => (string) : the table name of the mysql handlersocket server

공개 메소드들

메소드 설명
__construct ( array $options = [] ) Class constructor.
__destruct ( ) : void Destructor
close ( ) : boolean
destroy ( string $id ) : boolean
gc ( integer $maxlifetime ) : boolean
open ( string $save_path, string $name ) : boolean
read ( string $id ) : string
start ( array $options = [] ) : void
write ( string $id, string $data ) : boolean

보호된 메소드들

메소드 설명
init ( array $options ) Initialize HandlerSocket.

메소드 상세

__construct() 공개 메소드

Class constructor.
public __construct ( array $options = [] )
$options array associative array of options

__destruct() 공개 메소드

Destructor
public __destruct ( ) : void
리턴 void

close() 공개 메소드

public close ( ) : boolean
리턴 boolean

destroy() 공개 메소드

public destroy ( string $id ) : boolean
$id string
리턴 boolean

gc() 공개 메소드

public gc ( integer $maxlifetime ) : boolean
$maxlifetime integer
리턴 boolean

init() 보호된 메소드

Initialize HandlerSocket.
protected init ( array $options )
$options array associative array of options

open() 공개 메소드

public open ( string $save_path, string $name ) : boolean
$save_path string
$name string
리턴 boolean

read() 공개 메소드

public read ( string $id ) : string
$id string
리턴 string

start() 공개 메소드

public start ( array $options = [] ) : void
$options array associative array of options
리턴 void

write() 공개 메소드

public write ( string $id, string $data ) : boolean
$id string
$data string
리턴 boolean

프로퍼티 상세

$fields 보호되어 있는 프로퍼티

Stores session data results
protected array $fields
리턴 array

$hs 보호되어 있는 프로퍼티

HandlerSocket object
protected HandlerSocket,Phalcon\Session\Adapter $hs
리턴 HandlerSocket

$hsIndex 보호되어 있는 프로퍼티

HandlerSocket index number
protected int $hsIndex
리턴 integer

$options 보호되어 있는 프로퍼티

=====> (string) cookie_domain : the domain for which the cookie is valid. =====> (int) lifetime : session lifetime in seconds =====> (array) server : an array of mysql handlersocket server : 'host' => (string) : the name of the mysql handlersocket server 'port' => (int) : the port of the mysql handlersocket server 'dbname' => (string) : the database name of the mysql handlersocket server 'dbtable' => (string) : the table name of the mysql handlersocket server
protected $options