在 PHP 中,我知道单语句条件不需要大括号。但是这个问题是关于良好的编码风格。(当然,在谈论风格时,通常最好只使用项目中一致的风格,但对于这个问题,我们忽略它。)
所以:将任何条件语句括在大括号中是更好的形式,还是在简单条件下不使用括号更好(例如更干净):
例如这个:
if (!file_exists($templatefile)) {
throw new Exception('Template file does not exist');
}
或这个:
if (!file_exists($templatefile))
throw new Exception('Template file does not exist');
对此是否有任何共同一致的良好做法,还是仅取决于个人喜好?