通过引用和三元运算符分配变量?

发布于 2024-12-21 22:01:22 字数 425 浏览 1 评论 0原文

为什么三元运算符不能与引用赋值一起使用?

$obj     = new stdClass(); // Object to add
$result  = true; // Op result
$success = array(); // Destination array for success
$errors  = array(); // Destination array for errors

// Working
$target = &$success;
if(!$result) $target = &errors;
array_push($target, $obj);

// Not working
$target = $result ? &$success : &$errors;
array_push($target, $obj);

Why ternary operator doesn't work with assignment by reference?

$obj     = new stdClass(); // Object to add
$result  = true; // Op result
$success = array(); // Destination array for success
$errors  = array(); // Destination array for errors

// Working
$target = &$success;
if(!$result) $target = &errors;
array_push($target, $obj);

// Not working
$target = $result ? &$success : &$errors;
array_push($target, $obj);

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

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

发布评论

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

评论(1

吻风 2024-12-28 22:01:22

在这里,

$target = ($result ? &$success : &$errors);

您的示例还有两个拼写错误


编辑

http://php.net/manual /en/language.operators.comparison.php

注意:请注意,三元运算符是一个表达式,它的计算结果不是变量,而是表达式的结果。了解是否想通过引用返回变量非常重要。语句 return $var == 42 ? $a:$b;因此,在按引用返回的函数中将不起作用,并且在更高版本的 PHP 中会发出警告。

我不知道这以前是否有效,但现在不再有效了。如果您不想使用 if 语句,请尝试以下操作:

$result ? $target = &$success : $target = &$errors;

or 在分隔行上...

$result 
  ? $target = &$success 
  : $target = &$errors;

Here you go

$target = ($result ? &$success : &$errors);

Also your example has two typos


edit

http://php.net/manual/en/language.operators.comparison.php

Note: Please note that the ternary operator is an expression, and that it doesn't evaluate to a variable, but to the result of an expression. This is important to know if you want to return a variable by reference. The statement return $var == 42 ? $a : $b; in a return-by-reference function will therefore not work and a warning is issued in later PHP versions.

idk if this worked before, but it doesn't anymore. if you don't wanna use an if statement, then try this:

$result ? $target = &$success : $target = &$errors;

or on separated lines ...

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