How to rename PHPSESSID?

前端 未结 2 1354
北荒
北荒 2020-12-20 11:13

Wondering how I can change the php session id from PHPSESSID to something else so that it does not interfere with other PHP scripts running on the same domain. Is this possi

2条回答
  •  暖寄归人
    2020-12-20 11:32

    See this link for PHP runtime configuration. The variable you are looking for is session.name. You can also alter this programmatically by calling session_name before any call to session_start or session_register.

提交回复
热议问题