|
is_stringFind whether the type of a variable is string Description
bool is_string
( mixed
$var
)Finds whether the type given variable is string. Parameters
Return Values
Returns Examples
Example #1 is_string example
<?php The above example will output: is_string(false) = bool(false) is_string(true) = bool(false) is_string(NULL) = bool(false) is_string('abc') = bool(true) is_string('23') = bool(true) is_string(23) = bool(false) is_string('23.5') = bool(true) is_string(23.5) = bool(false) is_string('') = bool(true) is_string(' ') = bool(true) is_string('0') = bool(true) is_string(0) = bool(false) See Also
|