PHP 函數可以透過使用return 語句傳回陣列:傳回簡單陣列:return ['值', '值', '值'];傳回關聯陣列:return ['鍵' => '值', '鍵' => '值'];根據參數動態傳回數組:return ['鍵' => 計算值, '鍵' => 計算值];
######################################## ####PHP 函數如何傳回陣列? #########在 PHP 中,函數可以透過使用 ###return### 語句傳回陣列。讓我們透過一些實戰案例來探索如何實現。 #########範例 1:傳回一個簡單的陣列######
function getStates() { return ['Alabama', 'Alaska', 'Arizona', 'Arkansas']; } $states = getStates(); print_r($states);###這將輸出一個包含美國州份的陣列。 #########範例 2:傳回一個關聯數組######
function getUserInfo($userId) { // 模拟从数据库获取用户数据 return [ 'id' => $userId, 'name' => 'John Doe', 'email' => 'johndoe@example.com' ]; } $userInfo = getUserInfo(123); echo $userInfo['name']; // 输出:John Doe###這將傳回一個包含使用者詳細資料的關聯數組。 #########範例 3:使用函數的參數傳回動態陣列######
function calculateDiscount($price, $discountPercentage) { $discountAmount = $price * ($discountPercentage / 100); return ['discount_amount' => $discountAmount, 'final_price' => $price - $discountAmount]; } $discountInfo = calculateDiscount(100, 20); echo $discountInfo['final_price']; // 输出:80###此函數根據參數值動態傳回一個陣列。 ###
以上是PHP 函數如何傳回數組?的詳細內容。更多資訊請關注PHP中文網其他相關文章!