编程语言
首页 > 编程语言> > php – 在三元运算符中使用return

php – 在三元运算符中使用return

作者:互联网

我试图在三元运算符中使用return,但收到错误:

Parse error: syntax error, unexpected T_RETURN 

这是代码:

$e = $this->return_errors();
(!$e) ? '' : return array('false', $e);

这可能吗?

谢谢!

解决方法:

这是正确的语法:

return  !$e ? '' : array('false', $e);

标签:php,conditional-operator
来源: https://codeday.me/bug/20190926/1819453.html