(PHP 4, PHP 5, PHP 7)
gettype — Obtém o tipo da variável
Retorna o tipo da variável no PHP var
. Para
checagem de tipo, utilize as funções is_*.
var
A variável a ter o tipo verificado.
Os possíveis valores retornados pela função são:
Exemplo #1 Exemplo da função gettype()
<?php
$data = array(1, 1., NULL, new stdClass, 'foo');
foreach ($data as $value) {
echo gettype($value), "\n";
}
?>
O exemplo acima irá imprimir algo similar à:
integer double NULL object string