PHP は関数を提供しますsession_write_close
。セッションが閉じられているかどうかを確認したい。session_id()
それでも値を返します。
session_start();
//
// Some code there
//
session_write_close();
//
// Some code there
//
if( /*is session write closed?*/)
echo 'Session closed';
else
echo 'Session still opened';