siestacat/php-array-cast
最新稳定版本:1.0.2
Composer 安装命令:
composer require siestacat/php-array-cast
包简介
Force cast one dimension array
README 文档
README
Install:
composer require siestacat/php-array-cast
Usage:
use Siestacat\PhpArrayCast\Cast;
Cast::class(range(0,9), \stdClass::class); //Will throw error
Cast::class(array_fill(0, 9, new \stdClass), \stdClass::class); //No error
Cast::type(range(0,9), 'string'); //Will throw error
Cast::class(array_fill(0, 9, 'banana'), 'string'); //No error
Tests:
git clone https://github.com/SiestaCat/php-array-cast.git
cd php-array-cast
composer install
composer run-script test
统计信息
- 总下载量: 138
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2023-11-10