PHP Velho Oeste 2024

is_bool

(PHP 4, PHP 5, PHP 7)

is_bool Determină dacă o variablă este un boolean

Descrierea

is_bool ( mixed $var ) : bool

Determină dacă variabila dată este un boolean.

Parametri

var

Variabila ce este evaluată.

Valorile întoarse

Întoarce true dacă var este un boolean, false în caz contrar.

Exemple

Example #1 Exemple is_bool()

<?php
$a 
false;
$b 0;

// Deoarece $a este un boolean, funcția va întoarce true
if (is_bool($a) === true) {
    echo 
"Da, acesta este un boolean";
}

// Deoarece $b nu este un boolean, funcția va întoarce false
if (is_bool($b) === false) {
    echo 
"Nu, acesta nu este un boolean";
}
?>

A se vedea și

  • is_float() - Determină dacă tipul unei variabile este float
  • is_int() - Determină dacă tipul unei variabile este integer
  • is_string() - Determină dacă tipul variabilei este string
  • is_object() - Determină dacă o variabilă este un obiect
  • is_array() - Determină dacă o variabilă este un array

add a note add a note

User Contributed Notes 2 notes

up
12
phil
5 years ago
It should be stated that this function returns true if the _type_ of it's argument is boolean. It does not convert or coerce the value to a boolean type, not sure why so many comments focus on how to do this.
However, if you arrived here looking for a solution to convert a value to a boolean type, use this:

to_bool($x) { return (bool)$x; }
up
11
Julio Marchi
4 years ago
To check if a variable is boolean is one thing, to evaluate if the value of a variable represents a boolean condition (true or false) is another.

Here is a simple function that checks the status of the received variable in regard to boolean equivalencies (case-insensitive).

<?php
/**
* Check "Booleanic" Conditions :)
*
* @param  [mixed]  $variable  Can be anything (string, bol, integer, etc.)
* @return [boolean]           Returns TRUE  for "1", "true", "on" and "yes"
*                             Returns FALSE for "0", "false", "off" and "no"
*                             Returns NULL otherwise.
*/
function is_enabled($variable)
{
    if (!isset(
$variable)) return null;
    return
filter_var($variable, FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE);
}
?>

Of course, it is a simplistic approach, but for the majority of cases it will do the job right.

And, just to put the thing from the right perspective, here's a real function that does what Phill disclosed:

<?php
/**
* Convert $variable to boolean (adapted from Phill answer)
*
* @param  [mixed]  $variable  Can be anything
* @return [boolean]           Returns the booelan equivalent to $variable based on Zend Enegine interpretation
*/
function to_bool($variable)
{
    return (bool)
$variable;
}
?>

I hope it helps someone. Happy coding.
To Top