gpt4 book ai didi

php - PSR-2 if 语句——什么是允许的?

转载 作者:IT王子 更新时间:2023-10-29 00:03:32 25 4
gpt4 key购买 nike

我可以使用 if 语句吗:

if(true) return $value;

或者必须使用大括号:

if(true) {
return $value;
}

最佳答案

psr-2 standard 的第 5.1 节明确指出:

An if structure looks like the following. Note the placement of parentheses, spaces, and braces; and that else and elseif are on the same line as the closing brace from the earlier body.

<?php
if ($expr1) {
// if body
} elseif ($expr2) {
// elseif body
} else {
// else body;
}

因此,根据 psr-2,您必须if 语句中使用大括号。

关于php - PSR-2 if 语句——什么是允许的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31897521/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com