The SplBool class
(Bir sürüm bilgisi bulunamadı; sadece SVN'de olabilir.)
Giriş
The SplBool class is used to enforce strong typing of the bool type.
Sınıf Sözdizimi
Öntanımlı Sabitler
-
SplBool::__default -
SplBool::false -
SplBool::true
Örnekler
Örnek 1 SplBool usage example
<?php
$true = new SplBool(true);
if ($true) {
echo "TRUE\n";
}
$false = new SplBool;
if ($false) {
echo "FALSE\n";
}
?>
Yukarıdaki örneğin çıktısı:
TRUE
There are no user contributed notes for this page.
