session_save_path
(PHP 4, PHP 5, PHP 7, PHP 8)
Get and/or set the current session save path
Description
session_save_path() returns the path of the current directory used to save session data.
Parameters
pathSession data path. If specified and not null, the path to which data is saved will be changed.
session_save_path()needs to be called beforesession_start()for that purpose.NoteOn some operating systems, you may want to specify a path on a filesystem that handles lots of small files efficiently.
Return Values
Returns the path of the current directory used for data storage, Falseforfailure.
Changelog
| Version | Description |
|---|---|
| 8.0.0 | path is nullable now. |
See Also
- The session.save_path configuration directive