未设置会话变量会停止执行

发布于 2024-12-12 10:35:12 字数 584 浏览 0 评论 0原文

我对这段代码非常着迷,并将其范围缩小到 unset 函数。当我对会话变量调用 unset 时,PHP 不会执行超出该点的任何操作。有人可以帮忙吗?

public static function print_session_notification() {

    if( isset( $_SESSION['notification'] )) {
        $session_notification = $_SESSION['notification'];

        $output = '<div class="error">';
        $output .= $_SESSION['notification'];
        $output .= '</div>';

        unset( $_SESSION['notification'] );

        return $output;
    }
}

我调用 print notification::print_session_notification();来自标头包含。标头包含由函数调用。 $notification 对象在调用头文件的函数中是全局的。

I have been going crazy over this piece of code and narrowed it down to the unset function. When I call unset on the session variable, PHP doesn't execute anything beyond that point. Can someone please help?

public static function print_session_notification() {

    if( isset( $_SESSION['notification'] )) {
        $session_notification = $_SESSION['notification'];

        $output = '<div class="error">';
        $output .= $_SESSION['notification'];
        $output .= '</div>';

        unset( $_SESSION['notification'] );

        return $output;
    }
}

I call print notification::print_session_notification(); from a header include. The header include is called by a function. The $notification object is global in the function that calls the header file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

就此别过 2024-12-19 10:35:12

我通过向构造添加一个方法并将会话值分配给公共属性来解决该问题。谢谢你们的帮助!

I fixed the issue by adding a method to the construct and assigning the session values to public properties. Thanks for your help guys!!!

渡你暖光 2024-12-19 10:35:12

请确保在标头上设置了 session_start() 函数,并将 register_globals 设置为“ON”。

有关更多信息,请阅读 http://www.php.net/manual/en/function.unset.php

Please make sure that you set session_start() function on you header and set register_globals to "ON"

For more information read the comments on http://www.php.net/manual/en/function.unset.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文