Where will the session value be stored in PHP.
For example, cookies will be stored in the browser, as well as where the session value will be indicated.
thanks in advance...
By default, session values are stored on the file system in the PHP directory (at least on windows). You can find the default session location using the session_save_path function .
You can write your own session handlers to save session data to another location, such as a database. Take a look at session_set_save_handler for more information.
PHP . PHP cookie ID , . , , cookie. PHP , cookie . URL- -.
PHP Manual Site.PDF , , , -.
, .
/tmp Unix.
php.ini session.save_path
/tmp,
You can set the save path yourself using session_save_path .
Source: https://habr.com/ru/post/1766910/More articles:Python string encryption - pythonИсключения и модель-просмотр-презентатор (С#) - c#Python unicode popen or error reading Popen unicode - pythonAnsi C patch using dlsym compiles OK under Linux but does not work on Mac Os X - c ++c graphics on Linux - cJCombobox adds different colors to each element - javaПоместите загруженные письма на сервер POP3 - uploadHow to refer to a Grails GSP model variable indirectly, for example. via .get (...) - mapcreating a symbolic link from the selected file type in the folder - linuxVB.Net 2005, how can I subtract a date from (current date minus 7 days) and create a few days? - vb.netAll Articles