PHP Doku:: Constructs a float object type - splfloat.construct.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenSPL Type HandlingThe SplFloat classSplFloat::__construct

Ein Service von Reinhard Neidl - Webprogrammierung.

The SplFloat class

<<The SplFloat class

The SplEnum class>>

SplFloat::__construct

(PECL spl_types >= 0.1.0)

SplFloat::__constructConstructs a float object type

Beschreibung

SplFloat::__construct() ( float $input )

This constructs a new object of type float.

Parameter-Liste

input

The input parameter accepts a float or an integer. If an integer is passed, it will be converted to float.

Rückgabewerte

Es wird kein Wert zurückgegeben.

Beispiele

Beispiel #1 SplFloat::__construct() example

<?php
$float    
= new SplFloat(3.154);
$newFloat = new SplFloat(3);

try {
    
$float 'Try to cast a string value for fun';
} catch (
UnexpectedValueException $uve) {
    echo 
$uve->getMessage() . PHP_EOL;
}

var_dump($float);
var_dump($newFloat);
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

Value not a float
object(SplFloat)#1 (1) {
  ["__default"]=>
  float(3.154)
}
object(SplFloat)#2 (1) {
  ["__default"]=>
  float(3)
}


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",...)