session_id():
Get and/or set the current session id
session_regenerate_id():
Update the current session id with a newly generated one
session_create_id():
Create new session id
Here is a link to the PHP sessions doc and PHP docs
6
solved What is the difference between session_id(), session_create_id() and session_regenerate_id() in php?