为什么三元运算符不能通过引用进行赋值?
$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);
答案 0 :(得分:6)
你去吧
$target = ($result ? &$success : &$errors);
此外,您的示例还有两个拼写错误
http://php.net/manual/en/language.operators.comparison.php
注意:请注意,三元运算符是一个表达式,它不会计算变量,而是表达式的结果。知道是否要通过引用返回变量很重要。声明返回$ var == 42? $ a:$ b;因此,在返回引用函数中将不起作用,并在以后的PHP版本中发出警告。
idk如果之前有效,但它不再存在了。如果你不想使用if语句,那么试试这个:
$result ? $target = &$success : $target = &$errors;
或分开的线......
$result
? $target = &$success
: $target = &$errors;