Heim >Backend-Entwicklung >PHP-Tutorial >PHP 编码规范(24)_PHP教程

PHP 编码规范(24)_PHP教程

WBOY
WBOYOriginal
2016-07-13 17:20:27845Durchsuche

9.3.1 圆括号

一般而言,在含有多种运算符的表达式中使用圆括号来避免运算符优先级问题,是个好方法。即使运算符的优先级对你而言可能很清楚,但对其他人未必如此。你不能假设别的程序员和你一样清楚运算符的优先级。
if ($a == $b && $c == $d) // 错误
if (($a == $b) && ($c == $d)) // 正确


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/532580.htmlTechArticle9.3.1 圆括号 一般而言,在含有多种运算符的表达式中使用圆括号来避免运算符优先级问题,是个好方法。即使运算符的优先级对你而言可能...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:PHP 编码规范(14)_PHP教程Nächster Artikel:PHP 编码规范(5)_PHP教程