session file naming

php

Solution

Yes, `sess_` is a hard-coded prefix for the session file name. You can see that in the source file mod_files.c:

#define FILE_PREFIX "sess_"

Problem

The session files are saved at `session_save_path().'/sess_'.session_id()`. Is 'sess_' hard-coded? If it can be specified, how do I do that?

Original source

Related problems