我用Google搜索并浏览了堆栈溢出。我试图缩短我的代码,我在下面有这个工作方法,我想用三元风格重写。有人可以告诉我这是否可能,如果是的话,我做错了什么。感谢。
public function __get($field){ //refactor this using ternary method
if($field == 'user_id'){
return $this->uid;
} else {
return $this->fields[$field];
}
}
我从这开始:
($field == 'user_id') return $this->uid : return $this->fields[$field];
它给了我一个意想不到的返回错误。
我尝试使用另一个堆栈溢出解决方案,它在值之前列出了返回,但是没有用。
return $field == 'user_id' ? $this->uid : $this->fields[$field];
这给了我一些关于意外公众的错误,比如我的方法没有正确关闭。
答案 0 :(得分:1)
我猜它会是这样的;你重构了你的代码:
public function __get($field){ //refactor this using ternary method
return $field == 'user_id' ? $this->uid : $this->fields[$field];
}
}
public function otherfunction() { /* ... */ }
大括号不匹配,因此它关闭了类定义,下一个解析器错误是'unexpected public'
:)