我无法弄清楚的简写 if 语句有点麻烦
($product == "vindo") ? $this->getNextVindoInList($id) : $this->getNextGandrupInList($id),
这工作正常,但我想在该语句中再次检查。像这样:
if($product == "vindo") {
if($number != 14) {
$this->getNextVindoInList($id)
}
} else {
if($number != 22) {
$this->getNextGandrupInList($id)
}
}