Skip to content

Instantly share code, notes, and snippets.

@Alexfilus
Created June 28, 2019 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Alexfilus/0c55972103f28699c6b7643ee5551a9b to your computer and use it in GitHub Desktop.
Save Alexfilus/0c55972103f28699c6b7643ee5551a9b to your computer and use it in GitHub Desktop.
PHP сессии в редисе без настроек сервера
session_start([
'save_handler' => 'redis',
'save_path' => 'tcp://127.0.0.1:6379?database=1',
'cookie_lifetime' => 86400,
'gc_maxlifetime' => 86400,
'serialize_handler' => 'igbinary',
'name' => 'project',
'cookie_httponly' => true
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment