seffeng / format-helper
PHP 扩展格式辅助工具
v0.1.1
2023-08-03 03:16 UTC
Requires
- php: >=7.1
Requires (Dev)
- phpunit/phpunit: >=6.0
README
安装
# 安装
$ composer require seffeng/format-helper
目录说明
|---src
| | Format.php
| |---Traits
| FormatTrait.php
|---tests
| FormatTest.php
示例
/** * TestController.php * 示例 */ namespace App\Http\Controllers; use Seffeng\FormatHelper\Format; class TestController extends Controller { public function index() { var_dump(Format::sizeFormat(1024 * 1024 * 1024 * 1023)); } }
备注
1、更多示例请参考 tests 目录下的测试文件。