PHP: gettype() function
Description
The gettype() function is used to get the type of a variable.
Version:
(PHP 4 and above)
Syntax:
gettype(var_name)
Parameter:
Name | Description | Required / Optional |
Type |
---|---|---|---|
var_name | The name of the variable. | Required | Mixed* |
*Mixed : Mixed indicates that a parameter may accept multiple (but not necessarily all) types.
Return value
Possible values of the returned string:
- boolean
- integer
- double
- string
- array
- object
- resource
- NULL
- unknown type
Pictorial presentation of PHP gettype() function
Example :
<?php
echo gettype(102).'<br>';
echo gettype(true).'<br>';
echo gettype(' ').'<br>';
echo gettype(null).'<br>';
echo gettype(array()).'<br>';
echo gettype(new stdclass());
?>
Output:
integer boolean string NULL array object
View the example in the browser
Practice here online :
See also
Previous: get_resource_type
Next: import_request_ variables
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/php/function-reference/gettype.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics