carloscarucce/mb-str-pad
Composer 安装命令:
composer require carloscarucce/mb-str-pad
包简介
Binary safe behavior for str_pad
README 文档
README
Installing
composer require carloscarucce/mb-str-pad
Usage
include 'vendor/autoload.php'; $input = 'My text'; $length = 20; $padding = ' '; // Optional. Default: ' ' $padType = STR_PAD_RIGHT; // Optional. Use STR_PAD_RIGHT, STR_PAD_LEFT or STR_PAD_BOTH. Default: STR_PAD_RIGHT $encoding = null; //Optional. Default: null $result = mb_str_pad($input, $length, $padding, $padType, $encoding); var_dump($result); // string(20) "My text "
Run tests:
composer test
统计信息
- 总下载量: 155
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 4
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-05-24