php中if的4种写法 写法1: condition && yes; // 等同于“if (condition) yes;” 写法2: condition ? yes : no // 等同于“if (cond … Continue reading php中if的4种写法