downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

SplEnum> <SplFloat
[edit] Last updated: Fri, 24 Jun 2011

view this page in

SplFloat::__construct

(PECL spl_types >= 0.1.0)

SplFloat::__constructساخت شی نوع float

Description

SplFloat::__construct() ( float $input )

ساخت شی نوع float.

Parameters

input

پارامتر input مقادییر float را می‌پذیرد استثنا UnexpectedValueException برای موارد ارسالی دیگر ایجاد می‌شود. to float.

Return Values

No value is returned.

Examples

Example #1 مثال SplFloat::__construct()

<?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);
?>

The above example will output:

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



add a note add a note User Contributed Notes SplFloat::__construct - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites