PHP Velho Oeste 2024

The SplBool class

(PECL spl_types >= 0.1.0)

Introducere

The SplBool class is used to enforce strong typing of the bool type.

Sinopsisul clasei

SplBool extends SplEnum {
/* Constants */
const bool __default = false ;
const bool false = false ;
const bool true = true ;
/* Metode moștenite */
public SplEnum::getConstList ( bool $include_default = false ) : array
}

Constante predefinite

SplBool::__default

SplBool::false

SplBool::true

Exemple

Example #1 SplBool usage example

<?php
$true 
= new SplBool(true);
if (
$true) {
    echo 
"TRUE\n";
}

$false = new SplBool;
if (
$false) {
    echo 
"FALSE\n";
}
?>

Exemplul de mai sus va afișa:

TRUE

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top