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)
gettype — Obține tipul unei variabile
Întoarce tipul variabilei PHP var
. Pentru verificarea
tipului, utilizați funcțiile is_*
.
var
Variabila, tipul căreia se verifică.
Valorile posibile pentru string-ul întors sunt:
Example #1 Exemplu gettype()
<?php
$data = array(1, 1., NULL, new stdClass, 'foo');
foreach ($data as $value) {
echo gettype($value), "\n";
}
?>
Exemplul de mai sus va afișa ceva similar cu:
integer double NULL object string
Versiune | Descriere |
---|---|
7.2.0 |
Resursele închise sunt acum raportate ca 'resource (closed)' .
Anterior valoarea întoarsă pentru resursele închise era 'unknown type' .
|
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