Another option added is read_and_close, which indicates that the session data should be read and then the session should immediately be closed unchanged. For example, Set session.cache_limiter to private and set the flag to close the session immediately after reading it, using the following code snippet.
<?php session_start([ 'cache_limiter' => 'private', 'read_and_close' => true, ]); ?>
thank you for nice information.
ReplyDeletelearn php7