js、php三元表达式简写2020-05-27 本文已影响0人 车文烨 js: a ? a : b; //可以简写为: a || b; php: $a ? $a : $b; //可以简写为: $a ?: $b;