PHP函數可以傳回各種內建資料型別,包括:1. 整數;2. 浮點數;3. 字串;4. 布林值;5. 陣列;6. 物件;7. NULL。
PHP 函數傳回哪些內建資料型別?
PHP 函數可以傳回各種內建資料型別,包括:
#實戰案例
假設我們有一個函數calculate_age(DOB)
來計算基於給定出生日期的年齡。此函數傳回一個整數類型的年齡。
function calculate_age(string $DOB): int { $dobDate = new DateTime($DOB); $todayDate = new DateTime('today'); $age = $todayDate->diff($dobDate)->y; return $age; }
呼叫此函數:
$age = calculate_age('1980-01-01'); echo "Age: $age"; // 输出:Age: 43
其他範例
function is_valid(string $email): bool { return filter_var($email, FILTER_VALIDATE_EMAIL); }
function get_products(): array { // 从数据库获取产品列表 $productDetails = [ ['id' => 1, 'name' => 'Product 1'], ['id' => 2, 'name' => 'Product 2'] ]; return $productDetails; }
以上是PHP 函數傳回哪些內建資料型別?的詳細內容。更多資訊請關注PHP中文網其他相關文章!