Be careful comparing ReflectionParameter::getType() and gettype() as they will not return the same results for a given type.
string - string // OK
int - integer // Type mismatch
bool - boolean // Type mismatch
array - array // OK
(PHP 4, PHP 5, PHP 7, PHP 8)
gettype — Повертає тип змінної
Повертає тип змінної var
. Цією функцією краще
користуватись лише при налагодженні (debugging), щоб отримати читабельне
представлення типів змінних. Натомість, щоб перевірити тип змінної, краще
використовувати функції is_*
.
var
Змінна, в якої перевіряється тип даних.
Можливими значеннями рядків, що повертаються, є:
Приклад #1 Використання gettype()
<?php
$data = array(1, 1., NULL, new stdClass, 'foo');
foreach ($data as $value) {
echo gettype($value), "\n";
}
?>
Поданий вище приклад виведе щось схоже на:
integer double NULL object string
Be careful comparing ReflectionParameter::getType() and gettype() as they will not return the same results for a given type.
string - string // OK
int - integer // Type mismatch
bool - boolean // Type mismatch
array - array // OK