PHP Doku:: Constructs a bool object type - splbool.construct.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenSPL Type HandlingThe SplBool classSplBool::__construct

Ein Service von Reinhard Neidl - Webprogrammierung.

The SplBool class

<<The SplBool class

The SplString class>>

SplBool::__construct

(PECL spl_types >= 0.1.0)

SplBool::__constructConstructs a bool object type

Beschreibung

SplBool::__construct() ( void )

This constructs a new object of type bool.

Parameter-Liste

input

The input parameter accepts a bool.

strict

A boolean variable to indicate wether the object's strictness should be set or not.

Rückgabewerte

Es wird kein Wert zurückgegeben.

Beispiele

Beispiel #1 SplBool::__construct() example

<?php
$one 
= new SplBool(true);
$two = new SplBool(1);

var_dump($one);
var_dump($two);
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

object(SplBool)#1 (1) {
  ["__default"]=>
  bool(true)
}
object(SplBool)#1 (1) {
  ["__default"]=>
  bool(true)
}


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)