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 — Obtener el tipo de una variable
Devuelve el tipo de la variable PHP var
. Para
la comprobación de tipos, utilice las funciones is_*
.
var
La variable de la cual queremos comprobar su tipo.
Los valores posibles para la cadena devuelta son:
Ejemplo #1 Ejemplo de gettype()
<?php
$data = array(1, 1., NULL, new stdClass, 'foo');
foreach ($data as $value) {
echo gettype($value), "\n";
}
?>
El resultado del ejemplo sería algo similar a:
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