php session_cache_expire函數用來傳回目前快取的到期時間,其語法為int session_cache_expire ([ string $new_cache_expire ] )。
php session_cache_expire函數怎麼用?
作用:傳回目前快取的到期時間
語法:
int session_cache_expire ([ string $new_cache_expire ] )
參數:
new_cache_expire, 如果給定new_cache_expire ,就使用new_cache_expire 的值設定目前快取到期時間。
說明:
session_cache_expire() 傳回 session.cache_expire 的設定值。請求開始的時候,快取到期時間會被重置為 180,並且保存在 session.cache_expire 配置項目中。因此,針對每個請求,需要在 session_start() 函數呼叫之前 呼叫 session_cache_expire() 來設定快取到期時間。
php session_cache_expire()函數使用範例
<?php /* 设置缓存限制为 “private” */ session_cache_limiter('private'); $cache_limiter = session_cache_limiter(); /* 设置缓存过期时间为 30 分钟 */ session_cache_expire(30); $cache_expire = session_cache_expire(); /* 开始会话 */ session_start(); echo "The cache limiter is now set to $cache_limiter<br />"; echo "The cached session pages expire after $cache_expire minutes"; ?>
輸出:
The cache limiter is now set to private The cached session pages expire after 30 minutes
以上是php session_cache_expire函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!