search for in the  
<get_resource_typeimport_request_variables>
Last updated: Thu, 19 May 2005

gettype

(PHP 3, PHP 4, PHP 5)

gettype -- Get the type of a variable

Description

string gettype ( mixed var )

Returns the type of the PHP variable var.

Warning

Never use gettype() to test for a certain type, since the returned string may be subject to change in a future version. In addition, it is slow too, as it involves string comparison.

Instead, use the is_* functions.

Possibles values for the returned string are:

For PHP 4, you should use function_exists() and method_exists() to replace the prior usage of gettype() on a function.

See also settype(), is_array(), is_bool(), is_float(), is_int(), is_null(), is_numeric(), is_object(), is_resource(), is_scalar(), and is_string().



User Contributed Notes
gettype
matt at appstate
16-Dec-2004 02:10
Here is something that had me stumped with regards to gettype and is_object.
Gettype will report an incomplete object as such, whereas is_object will return FALSE.

if (!is_object($incomplete_obj)) {
   echo 'This variable is not an object, it is a/an ' . gettype($incomplete_obj);
}

Will print:
This variable is not an object, it is a/an object
jose at vocis dot com
14-Sep-2000 12:22
Also returns "NULL" for variables assigned the return of a function that returned no value via "return;".

<code>

function weird(){
   return;
}
$a=weird();

</code>

isset($a) <> 1
empty($a) <> 1
gettype($a) == NULL

-Jose Batista
ojones at dotclick dot com
31-Aug-2000 01:19
After calling OCIResult to retrieve a NULL result from an Oracle result-set, gettype returns the string 'NULL'.

<get_resource_typeimport_request_variables>
 Last updated: Thu, 19 May 2005
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: The Server Pages
Last updated: Thu May 19 18:35:34 2005 EDT