目前,我聲明瞭函數在PHP這樣的:我可以在函數聲明中省略花括號嗎?
function theFunction($theVar) {
...
}
而在JavaScript中,如:
function theFunction(theVar) {
...
}
我可以省略花括號當函數只包含一個行?像:
function theFunction($theVar)
doSomething();
和:
function theFunction(theVar)
doSomething();
嘗試看看會發生什麼會更快 – Crisp
否:http://www.php.net/manual/en/functions.user-defined.php – Quasdunk
沒有。你可以像循環和if/else語句那樣做,但不是函數定義 –