(PHP 4 >= 4.0.3, PHP 5, PHP 7)
session_cache_limiter — ��ȡ/���û���������
$cache_limiter
] ) : stringsession_cache_limiter() ���ص�ǰ���������������ơ�
������������������ͻ��˷��͵� HTTP ��Ӧͷ�еĻ�����Ʋ��ԡ� �ͻ��˻��ߴ��������ͨ����������Ӧͷ��Ϣ�� ȷ������ҳ�����ݵĻ������ ���û���������Ϊ nocache ����ƿͻ��˻��ߴ���������������ݣ� public ��ʾ����ͻ��˻����������������ݣ� private ��ʾ����ͻ��˻��棬 ���Dz��������������������ݡ�
�� private ģʽ�£� ���� Mozilla ���ڵ�һЩ�������������ȷ���� Expire ��Ӧͷ�� ͨ��ʹ�� private_no_expire ģʽ���Խ��������⣺������ģʽ�£� ������ͻ��˷��� Expire ��Ӧͷ��
����Ϊ '' ���Թر� �Զ����ͻ��������Ӧͷ�Ĺ��ܡ�
����ʼ��ʱ�����������ᱻ����ΪĬ��ֵ�����Ҵ洢�� session.cache_limiter �������С� ��ˣ����Ҫ���û���������������ÿ������ ����Ҫ�ڵ��� session_start() ����֮ǰ�� ���� session_cache_limiter() �������������á�
cache_limiter
���ָ���� cache_limiter
������
��ʹ��ָ��ֵ��Ϊ������������ֵ��
ֵ | ���͵���Ӧͷ |
---|---|
public |
Expires�������� session.cache_expire ���趨����ó��� Cache-Control�� public, max-age=������ session.cache_expire ���趨����ó��� Last-Modified�����Ự���ʱ�䣩 |
private_no_expire |
Cache-Control: private, max-age=������ session.cache_expire ���趨����ó���, pre-check=������ session.cache_expire ���趨����ó��� Last-Modified: ���Ự���ʱ�䣩 |
private |
Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: private, max-age=������ session.cache_expire ���趨����ó���, pre-check=������ session.cache_expire ���趨����ó��� Last-Modified: ���Ự���ʱ�䣩 |
nocache |
Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache |
���ص�ǰ���õĻ������������ơ�
Example #1 session_cache_limiter() ʾ��
<?php
/* ���û���������Ϊ 'private' */
session_cache_limiter('private');
$cache_limiter = session_cache_limiter();
echo "The cache limiter is now set to $cache_limiter<br />";
?>