Fury-Tech Logo
Home  News  Articles  Reviews  Guides  Resources  Forums 
Fury-Tech // Technology news, hardware and game reviews, guides, articles, and resources   
Search:



There are currently 0 members and 10 guests browsing on Fury-Tech.


Join our community in the tech forums for uncut technology discussion.

is_bool


(PHP 4 , PHP 5)

is_bool --  Finds out whether a variable is a boolean

Description

bool is_bool ( mixed var )

Finds whether the given variable is a boolean.

Parameters

var

The variable being evaluated.

Return Values

Returns TRUE if var is a boolean, FALSE otherwise.

Examples

Example 1. is_bool() examples

<?php
$a
= false;
$b = 0;

// Since $a is a boolean, this is true
if (is_bool($a)) {
    echo
"Yes, this is a boolean";
}

// Since $b is not a boolean, this is not true
if (is_bool($b)) {
    echo
"Yes, this is a boolean";
}
?>

Join our community in the tech forums for uncut technology discussion.



©2007 Fury-Tech | Tech News, Hardware Reviews, Forums, Guides, and more.

Web Hosting by Intavant

Tech News | Articles | Reviews | Guides | Resources | Tech Forums