php – 用unset()替换session_unregister

前端之家收集整理的这篇文章主要介绍了php – 用unset()替换session_unregister前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在移动一个我没有从一个服务器(PHP 5.2)创建到较新的系统(PHP 5.3)的遗留系统,并且很多系统使用session_unregister.我感谢这在5.3中已经被弃用了,所以我应该继续使用unset($_ SESSION [‘myVar’])替换所有的例子,否则这会导致一些破坏?

更好的是,有没有一个可以实现我需要的功能的替代方法,如果unset()不正确的话

您可以使用unset($_ SESSION [‘yourvar’])来取消设置特定的会话变量;但是请注意手册中的这一部分:

Do NOT unset the whole $_SESSION with unset($_SESSION) as this will
disable the registering of session variables through the $_SESSION
superglobal.

(从:http://php.net/manual/en/function.session-unset.php)

原文链接:https://www.f2er.com/php/132300.html

猜你在找的PHP相关文章