Manuel PHP
SplInt::__construct
(No version information available, might be only in CVS)
SplInt::__construct — Constructs an integer object type
Description
SplInt::__construct
( void
)
This constructs a new object of type float.
Liste de paramètres
- input
-
The input parameter accepts an integer An UnexpectedValueException Exception will be thrown if anything is passed.
Valeurs de retour
Aucune valeur n'est retournée.
Exemples
Exemple #1 SplInt::__construct() example
- <?php
- $int = new SplInt(94);
- try {
- $int = 'Try to cast a string value for fun';
- } catch (UnexpectedValueException $uve) {
- echo $uve->getMessage() . PHP_EOL;
- }
- var_dump($int);
- echo $int; // Outputs 94
- ?>
L'exemple ci-dessus va afficher :
Value not an integer
object(SplInt)#1 (1) {
["__default"]=>
int(94)
}
94
Remonter 
