granam/strict-integer
最新稳定版本:2.1.1
Composer 安装命令:
composer create-project granam/strict-integer
包简介
Base for lightweight integer containers with strict checks
README 文档
README
PHP does not provide scalar type hinting yet (planned for PHP 7.0).
For that reason, if we want to be sure about scalar type, a type-checking class is the only chance.
<?php
use Granam\Strict\Integer\StrictInteger;
use Granam\Strict\Integer\Exceptions\WrongParameterType;
$integer = new StrictInteger(12345);
// int(12345)
var_dump($integer->getValue());
$integerFromString = new StrictInteger("124578", false /* explicitly non-strict */);
// int(124578)
var_dump($integerFromString->getValue());
$integerFromFloatString = new StrictInteger("987.0", false /* explicitly non-strict */);
// int(987)
var_dump($integerFromFloatString->getValue());
$integerFromTrue = new StrictInteger(true, false /* explicitly non-strict */);
// int(1)
var_dump($integerFromTrue->getValue());
$integerFromNull = new StrictInteger(null, false /* explicitly non-strict */);
// int(0)
var_dump($integerFromNull->getValue());
// ...
// The type check is strict by default, therefore only integer is allowed to be passed
try {
new StrictInteger(null);
} catch (WrongParameterType $integerException) {
// Something get wrong: On strict mode expected integer only, got NULL
die('Something get wrong: ' . $integerException->getMessage());
}
统计信息
- 总下载量: 447
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-03-30