session

English [?se?n] US [?s???n]

n. ?? ?? ??? ??(??) ??, ??(???? ??)

cache

] 美[k??]

n.??? ??; <???>?? ?? ?? ??

vi.

PHP session_cache_expire() ?? ???

??: ?? ??? ?? ??? ?????.

??: ??int session_cache_expire ([ string $new_cache_expire ] )

????:

???? De ??
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