Types SPL
PHP Manual

La classe SplInt

(No version information available, might only be in SVN)

Introduction

La classe SplInt est utilisée pour assurer le typage fort du type integer.

Synopsis de la classe

SplInt extends SplType {
/* Constantes */
const integer __default = 0 ;
/* Méthodes héritées */
SplType::__construct ([ mixed $initial_value [, bool $strict ]] )
}

Constantes pré-définies

SplInt::__default

Exemples

Exemple #1 Exemple d'utilisation de la classe SplInt

<?php
$int 
= new SplInt(94);

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

echo 
$int PHP_EOL;
?>

L'exemple ci-dessus va afficher :

Value not an integer
94


Types SPL
PHP Manual