session_save_path
(PHP 4 )
session_save_path -- Get and/or set the current session
save path
Description
string session_save_path ( [string path])
session_save_path() returns the path of the current directory
used to save session data. If path is specified, the path
to which data is saved will be changed. session_save_path()
needs to be called before session_start() for that purpose.
Note: On some operating systems, you may want to specify
a path on a filesystem that handles lots of small files
efficiently. For example, on Linux, reiserfs may provide
better performance than ext2fs.
See also the session.save_path configuration directive.
session_set_cookie_params
(PHP 4 )
session_set_cookie_params -- Set the session cookie parameters
Description
void session_set_cookie_params ( int lifetime [, string
path [, string domain [, bool secure]]])
Set cookie parameters defined in the php.ini file. The effect
of this function only lasts for the duration of the script.
Note: The secure parameter was added in PHP 4.0.4.
See also the configuration directives session.cookie_lifetime,
session.cookie_path, session.cookie_domain, session.cookie_secure,
and session_get_cookie_params().
|