juniq/yii2-helper-time
最新稳定版本:1.1
Composer 安装命令:
composer require juniq/yii2-helper-time
包简介
A useful helper function for time calculations - especially for durations - for Yii Framework 2
README 文档
README
Description
A useful helper function for time calculations - especially for durations - for Yii Framework 2. You can use the function Time::formatDuration to convert seconds into human readable duration strings like: 5 days 8 hours 19 minutes 11 seconds
How to install
Composer
The easiest way to install this package is to use composer. If you don't have composer get it here:
https://getcomposer.org/download/
Now you can run the following commands in your root project directory:
composer require "juniq/yii2-helper-time" "*"
or (depending on your installation type)
php composer.phar require "juniq/yii2-helper-time" "*"
Manually download
Download the latest version here:
https://github.com/juniq/yii2-helper-time/
How to use it
To convert seconds into human readable duration strings, you can use the following function:
Time::formatDuration($time, $length = 'short', $custom_units = false, $separator = ', ')
| Parameter | Type | Required? | Description |
|---|---|---|---|
| $time | Integer | yes | The time in seconds you want to format. |
| $length | String | optional | The display lenghts. Use "short" or "long". |
| $custom_units | Array/Boolean | optional | Time units to display. Pass "false" to use all time units. Possible values: y, m, w, d, h, i, s. |
| $separator | String | optional | The separator sign between time units. |
Examples
use juniq\helper\Time;
$time_in_seconds = 5781; // 1 hour 36 minutes, 21 seconds
echo Time::formatDuration($time_in_seconds);
// ouput: 1 hour 36 minutes, 21 seconds
echo Time::formatDuration($time_in_seconds, 'long', ['h','i','s'], 'long');
// ouput: 1 hour 36 minutes 21 seconds
echo Time::formatDuration($time_in_seconds, 'short', ['h','i','s'], ',');
// output: 36 minutes, 21 seconds
echo Time::formatDuration($time_in_seconds, 'short', ['i','s'], ',');
// output: 96 m, 21 s
License
Look at 'LICENSE.md' file
About & Copyright
Copyright by JUNIQ GmbH & Co. KG. Author: Richard Jung
统计信息
- 总下载量: 2.73k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2015-08-17