NAME ^

php_session.pir - PHP session Library

DESCRIPTION ^

Functions ^

int session_cache_expire([int new_cache_expire])
Return the current cache expire. If new_cache_expire is given, the current cache_expire is replaced with new_cache_expireNOT IMPLEMENTED.
string session_cache_limiter([string new_cache_limiter])
Return the current cache limiter. If new_cache_limited is given, the current cache_limiter is replaced with new_cache_limiterNOT IMPLEMENTED.
bool session_decode(string data)
Deserializes data and reinitializes the variablesNOT IMPLEMENTED.
bool session_destroy(void)
Destroy the current session and all data associated with itNOT IMPLEMENTED.
string session_encode(void)
Serializes the current setup and returns the serialized representationNOT IMPLEMENTED.
array session_get_cookie_params(void)
Return the session cookie parametersNOT IMPLEMENTED.
string session_id([string newid])
Return the current session id. If newid is given, the session id is replaced with newidNOT IMPLEMENTED.
bool session_is_registered(string varname)
Checks if a variable is registered in sessionNOT IMPLEMENTED.
string session_module_name([string newname])
Return the current module name used for accessing session data. If newname is given, the module name is replaced with newnameNOT IMPLEMENTED.
string session_name([string newname])
Return the current session name. If newname is given, the session name is replaced with newnameNOT IMPLEMENTED.
bool session_regenerate_id([bool delete_old_session])
Update the current session id with a newly generated one. If delete_old_session is set to true, remove the old session.NOT IMPLEMENTED.
bool session_register(mixed var_names [, mixed ...])
Adds varname(s) to the list of variables which are freezed at the session endNOT IMPLEMENTED.
string session_save_path([string newname])
Return the current save path passed to module_name. If newname is given, the save path is replaced with newnameNOT IMPLEMENTED.
void session_set_cookie_params(int lifetime [, string path [, string domain [, bool secure[, bool httponly]]]])
Set session cookie parametersNOT IMPLEMENTED.
void session_set_save_handler(string open, string close, string read, string write, string destroy, string gc)
Sets user-level functionsNOT IMPLEMENTED.
bool session_start(void)
Begin session - reinitializes freezed variables, registers browsers etcNOT IMPLEMENTED.
bool session_unregister(string varname)
Removes varname from the list of variables which are freezed at the session endNOT IMPLEMENTED.
void session_unset(void)
Unset all registered variablesNOT IMPLEMENTED.
void session_write_close(void)
Write session data and end sessionNOT IMPLEMENTED.


parrot