使用 & 获取 $_SESSION 位置

发布于 2024-09-29 08:45:07 字数 333 浏览 6 评论 0原文

为什么这段代码不起作用?

public function get($key) {
    return isset($_SESSION[$key]) ? &$_SESSION[$key] : false;
}

错误

Parse error: syntax error, unexpected '&' in C:\Arquivos de programas\EasyPHP-5.3.3\www\myphpblog\code\sessionstorage.class.php on line 12

谢谢。

Why this code doesn't work?

public function get($key) {
    return isset($_SESSION[$key]) ? &$_SESSION[$key] : false;
}

Error

Parse error: syntax error, unexpected '&' in C:\Arquivos de programas\EasyPHP-5.3.3\www\myphpblog\code\sessionstorage.class.php on line 12

Thank you.

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

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

发布评论

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

评论(3

剧终人散尽 2024-10-06 08:45:08

三元运算符实际上是三个 表达式,例如 expr1 ? expr2 : expr3;

请参阅返回引用中的注释:

如果您尝试使用以下语法从函数返回引用:return ($this->value);,当您尝试返回表达式的结果时,这将不起作用,而不是变量,通过引用。您只能通过函数的引用返回变量 - 没有别的。

A ternary operator is really three expressions, e.g. expr1 ? expr2 : expr3;

See the Notes in Returning References:

If you try to return a reference from a function with the syntax: return ($this->value); this will not work as you are attempting to return the result of an expression, and not a variable, by reference. You can only return variables by reference from a function - nothing else.

无妨# 2024-10-06 08:45:08

PHP 中返回引用的语法为 &(){ return; }
另外,仅应通过引用返回变量引用

因此,您可能应该重写它:

function &get($key) {
    $a = false;
    if( isset($_SESSION[$key]) )
        return $_SESSION[ $key ];
    return $a;
}

The syntax for returning a reference in PHP is &<function name>(){ return <referece> }
Also, Only variable references should be returned by reference

So, you should probably rewrite it:

function &get($key) {
    $a = false;
    if( isset($_SESSION[$key]) )
        return $_SESSION[ $key ];
    return $a;
}
后来的我们 2024-10-06 08:45:08

只需删除 &它会起作用的。呸……

Just remove the & and it will work. Dah...

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