Session 函数 业 ,精于勤 荒于嬉.

Session 函数 session_status 返回当前会话状态

发表日期:2021-07-01 08:56:51 | 来源: | 分类:Session 函数

session_status

(PHP 5 >= 5.4.0, PHP 7, PHP 8)

session_status返回当前会话状态

说明

session_status(): int

session_status() 被用于返回当前会话状态。

返回值

  • PHP_SESSION_DISABLED 会话是被禁用的。
  • PHP_SESSION_NONE 会话是启用的,但不存在当前会话。
  • PHP_SESSION_ACTIVE 会话是启用的,而且存在当前会话。

参见

阅读全文 »

Session 函数 session_unset 释放所有的会话变量

发表日期:2021-07-01 08:56:51 | 来源: | 分类:Session 函数

session_unset

(PHP 4, PHP 5, PHP 7, PHP 8)

session_unset释放所有的会话变量

说明

session_unset(): void

session_unset() 会释放当前会话注册的所有会话变量。

返回值

没有返回值。

注释

注意:

如果使用的是 $_SESSION (或者PHP 4.0.6或更早版本的 $HTTP_SESSION_VARS ) ,请使用 unset() 去 注销会话变量,即 unset ($_SESSION['varname']);.

警告

请不要使用unset($_SESSION)来释放整个$_SESSION, 因为它将会禁用通过全局$_SESSION去注册会话变量

阅读全文 »

Session 函数 session_write_close Write session data and end session

发表日期:2021-07-01 08:56:52 | 来源: | 分类:Session 函数

session_write_close

(PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8)

session_write_closeWrite session data and end session

说明

session_write_close(): bool

End the current session and store session data.

Session data is usually stored after your script terminated without the need to call session_write_close(), but as session data is locked to prevent concurrent writes only one script may operate on a session at any time. When using framesets together with sessions you will experience the frames loading one by one due to this locking. You can reduce the time needed to load all the frames by ending the session as soon as all changes to session variables are done.

参数

此函数没有参数。

返回值

成功时返回 true, 或者在失败时返回 false

更新日志

版本 说明
7.2.0 The return type of this function is bool now. Formerly, it has been void.

参见

阅读全文 »

全部博文(1580)
集速网 copyRight © 2015-2022 宁ICP备15000399号-1 宁公网安备 64010402001209号
与其临渊羡鱼,不如退而结网
欢迎转载、分享、引用、推荐、收藏。