litwicki / common
辅助函数和实用工具。
1.0
2015-05-29 17:07 UTC
Requires
- php: >=5.3
Suggests
- symfony/yaml: To use yaml based configuration.
This package is not auto-updated.
Last update: 2024-09-28 17:32:22 UTC
README
一组具有广泛用途的辅助函数和实用工具。
Litwicki\Common\Common
非常适合各种字符串操作、验证和快速格式化。Litwicki\Common\Form
提供辅助方法来构建数组以及为常见城市、州、国家元素创建表单select
。Litwicki\Common\Http
提供解析Http用户代理到更易读格式的辅助工具。Litwicki\Common\Object
包括将对象转换为xml、json、数组及其相反的方法。Litwicki\Common\TimeAgo
允许您将DateTime
解析为可读的字符串,表示小时、分钟和/或秒之前。
安装
$ composer require "litwicki/common"
使用方法
单独包含每个辅助函数。
use Litwicki\Common\Common;
use Litwicki\Common\Form;
use Litwicki\Common\Http;
use Litwicki\Common\Object;
use Litwicki\Common\TimeAgo;