granam/string
最新稳定版本:4.2.2
Composer 安装命令:
composer create-project granam/string
包简介
Lightweight string wrapper
README 文档
README
<?php use Granam\String\StringObject; use Granam\String\Exceptions\WrongParameterType; $string = new StringObject(12345.678); echo $string; // string '12345.678' try { new StringObject(fopen('foo', 'rb')); } catch (WrongParameterType $stringException) { // Expected scalar or object with \_\_toString method on strict mode, got resource. die('Something get wrong: ' . $stringException->getMessage()); }
统计信息
- 总下载量: 29.22k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 1
- 依赖项目数: 24
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-07-21