update : 2015.11.03
php.shukuma.com검색:
|
The SessionHandlerInterface class(PHP 5 >= 5.4.0) 소개SessionHandlerInterface is an interface which defines a prototype for creating a custom session handler. In order to pass a custom session handler to session_set_save_handler() using its OOP invocation, the class must implement this interface. Please note the callback methods of this class are designed to be called internally by PHP and are not meant to be called from user-space code. 클래스 개요
SessionHandlerInterface
{
/* 메소드 */
}Example #1 Example using SessionHandlerInterface
The following example provides file based session storage similar to the
PHP sessions default save handler Note we use the OOP prototype with session_set_save_handler() and register the shutdown function using the function's parameter flag. This is generally advised when registering objects as session save handlers.
<?php Table of Contents
|