PHP 함수는 정수, 부동 소수점 숫자, 문자열, 부울 값, 배열, 객체 및 NULL을 포함한 다양한 데이터 유형을 반환할 수 있습니다. 구체적인 방법은 다음과 같습니다: 정수 반환: int 유형 힌트 및 return 문 사용, 부동 소수점 숫자 반환: float 유형 힌트 및 return 문 사용, 문자열 반환: 문자열 유형 힌트 및 return 문 사용: bool 유형 힌트 및 return 문 사용 ; 배열 반환: 배열 유형 힌트 및 반환 문 사용; 개체 반환: 개체 생성 및 반환 NULL: ?
PHP 함수에서 반환되는 데이터 유형
PHP에서 함수는 다음을 포함한 다양한 데이터 유형을 반환할 수 있습니다. (bool)
<?php // 返回整数 function sum(int $a, int $b): int { return $a + $b; } // 返回浮点数 function average(float $a, float $b): float { return ($a + $b) / 2; } // 返回字符串 function greet(string $name): string { return "Hello, $name!"; } // 返回布尔值 function isOdd(int $number): bool { return $number % 2 != 0; } // 返回数组 function getNames(): array { return ["John", "Mary", "Bob"]; } // 返回对象 class Person { public $name; public function __construct($name) { $this->name = $name; } } function createPerson(string $name): Person { return new Person($name); } // 返回 NULL function getOptionalData(): ?string { // 根据某些条件返回数据或 NULL if (rand(0, 1)) { return "Data"; } return null; } // 调用函数 $result1 = sum(1, 2); // 整数 $result2 = average(3.5, 5.5); // 浮点数 $result3 = greet("Alice"); // 字符串 $result4 = isOdd(7); // 布尔值 $result5 = getNames(); // 数组 $result6 = createPerson("Bob"); // 对象 $result7 = getOptionalData(); // NULL // 打印结果类型 echo gettype($result1) . "\n"; echo gettype($result2) . "\n"; echo gettype($result3) . "\n"; echo gettype($result4) . "\n"; echo gettype($result5) . "\n"; echo gettype($result6) . "\n"; echo gettype($result7) . "\n"; ?>
integer double string boolean array object NULL
위 내용은 PHP 함수가 반환할 수 있는 다양한 데이터 유형은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!