2 つのタイムスタンプ間の時間の長さを計算するための PHP 実装
リリース: 2016-07-25 08:45:23
- /**
- * 2 つの時刻間の時間を返します、*年*月*日*時*分*秒
- * @param int $one_time time one
- * @param int $two_time time two
- * @param int $return_type デフォルト値は次のとおりです0、0/ が 0 でない場合、連結は 1/* 秒、2/* 分* 秒、3/* 時* 分* 秒/、4/* 日* 時* 分* 秒、5/* 月を返します。 * day *時*分*秒, 6/*年*月*日*時*分*秒
- * @param array $format_array 文字の書式設定、たとえば、array('year', 'month', 'day', '時'、'分'、'秒')
- * @return 文字列または false
- */
- public function getRemainderTime($one_time, $two_time, $return_type=0, $format_array=array('年', '月', '日', '時', '分', '秒')){
- if($return_type<0 || $return_type>6){
- return false;
- }
- if(!(is_int($one_time) && is_int($two_time))){
- return false;
- }
- $remainder_秒 = abs($one_time-$two_time);
- //年
- $years = 0;
- if(($return_type==0 || $return_type==6) && $remainder_seconds-31536000> ;0){
- $years = Floor($remainder_秒/(31536000));
- }
- //月
- $monthes = 0;
- if(($return_type==0 || $return_type>=5) && $remainder_秒-$years*31536000-2592000>0){
- $monthes = Floor(($remainder_seconds-$years*31536000)/(2592000));
- }
- //日
- $days = 0;
- if(($return_type ==0 || $return_type>=4) && $remainder_seconds-$years*31536000-$monthes*2592000-86400>0){
- $days = Floor(($remainder_seconds-$years*31536000-$monthes*2592000) /(86400));
- }
- //時間
- $hours = 0;
- if(($return_type==0 || $return_type>=3) && $remainder_seconds-$years*31536000-$monthes*2592000-$ days*86400-3600>0){
- $hours = Floor(($remainder_seconds-$years*31536000-$monthes*2592000-$days*86400)/3600);
- }
- //分
- $ minutes = 0;
- if(($return_type==0 || $return_type>=2) && $remainder_秒-$年*31536000-$月*2592000-$日*86400-$時間*3600-60>0){
- $分 = Floor(($remainder_秒-$年*31536000- $monthes*2592000-$days*86400-$hours*3600)/60);
- }
- //秒
- $秒 = $remainder_秒-$年*31536000-$monthes*2592000-$days*86400-$hours* 3600-$分*60;
- $return = false;
- switch ($return_type){
- case 0:
- if($years>0){
- $return = $years.$format_array[0].$monthes.$ format_array[1].$days.$format_array[2].$hours.$format_array[3].$ minutes.$format_array[4].$秒.$format_array[5];
- }else if($monthes>0 ){
- $return = $monthes.$format_array[1].$days.$format_array[2].$hours.$format_array[3].$ minutes.$format_array[4].$秒.$format_array[5] ;
- }else if($days>0){
- $return = $days.$format_array[2].$hours.$format_array[3].$ minutes.$format_array[4].$秒.$format_array[5] ];
- }else if($hours>0){
- $return = $hours.$format_array[3].$ minutes.$format_array[4].$秒.$format_array[5];
- }else if($ minutes>0){
- $return = $ minutes.$format_array[4].$秒.$format_array[5];
- }else{
- $return = $秒.$format_array[5];
- }
- ブレーク;
- ケース 1:
- $return = $秒.$format_array[5];
- ブレーク;
- ケース 2:
- $return = $ minutes.$format_array[4].$秒.$format_array[5];
- ブレーク;
- ケース 3:
- $return = $hours.$format_array[3].$ minutes.$format_array[4].$秒.$format_array[5];
- ブレーク;
- ケース 4:
- $return = $days.$format_array [2].$hours.$format_array[3].$ minutes.$format_array[4].$秒.$format_array[5];
- ブレーク;
- ケース 5:
- $return = $monthes.$format_array[1] .$days.$format_array[2].$hours.$format_array[3].$ minutes.$format_array[4].$秒.$format_array[5];
- ブレーク;
- ケース 6:
- $return = $years .$format_array[0].$monthes.$format_array[1].$days.$format_array[2].$hours.$format_array[3].$ minutes.$format_array[4].$秒.$format_array[5] ];
- ブレーク;
- デフォルト:
- $return = false;
- }
- return $return;
- }
复制代
|
PHP
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31