PHP session_write_close() Function

What is session_write_close Function?

Explanation

The "session_write_close()" function is used to write session data and end the session.

Syntax:


session_write_close()

Session data is usually stored after your script terminated without the need to call session_write_close, but as session data is locked to prevent concurrent writes only one script may operate on a session at any time. When using framesets together with sessions you will experience the frames loading one by one due to this locking. You can reduce the time needed to load all the frames by ending the session as soon as all changes to session variables are done.

There is another function quite similar to session_write_close that is session_commit()

Syntax:


session_commit()

This function is an alias of: session_write_close().

PHP Topics


Ask Questions

Ask Question