Кто нибудь пробывал это
http://www.php.net/manual/en/intro.spl-types.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
Тоесть абсолютно нормальная типизация. Но мне
(
Read more... )
Comments 2
Reply
Reply
Leave a comment