La clase SplInt

(PECL spl_types >= 0.1.0)

Introducción

La clase SplInt se utiliza para forzar la tipificación fuerte del tipo integer.

Sinopsis de la Clase

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

Constantes predefinidas

SplInt::__default

Ejemplos

Ejemplo #1 Ejemplo de uso de SplInt

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

try {
    
$int 'Intentar amoldar un valor de tipo string por diversión';
} catch (
UnexpectedValueException $uve) {
    echo 
$uve->getMessage() . PHP_EOL;
}

echo 
$int PHP_EOL;
?>

El resultado del ejemplo sería:

Value not an integer
94