function someFuntion(){
$myArr = array(); // At first, you have an empty array
$myVal = //some processing here to determine value of $myVal
$myArr[] = $myVal; // Put that $myVal into the array
return $myArr;
}
並像這樣呼叫函數:
$result = someFunction();
您的函數還可以接受參數,甚至處理透過引用傳遞的參數:
function someFuntion(array & $myArr){
$myVal = //some processing here to determine value of $myVal
$myArr[] = $myVal; // Put that $myVal into the array
}
然後,像這樣呼叫該函數:
$myArr = array( ... );
someFunction($myArr); // The function will receive $myArr, and modify it
您可以使用匿名函數:
或您可以使用箭頭函數:
預設情況下,當您位於函數內部時,您無權存取外部變數。
如果您希望函數能夠存取外部變量,則必須在函數內部將其宣告為全域變數:
有關詳細信息,請參閱變數範圍 .
但請注意,使用全域變數不是一個好的做法:這樣,您的函數就不再獨立了。
更好的主意是讓你的函數回傳結果:
並像這樣呼叫函數:
您的函數還可以接受參數,甚至處理透過引用傳遞的參數:
然後,像這樣呼叫該函數:
有了這個:
有關詳細信息,您應該閱讀函數 部分,特別是以下子部分: