형식의 타임 스탬프를 변환하여 PHP 2009-09-12 20:57:19
와 같은 형식으로 바꾸려고합니다 3 minutes ago
.
유용한 스크립트를 찾았지만 시간 변수로 사용할 다른 형식을 찾고 있다고 생각합니다. 이 형식으로 작동하도록 수정하려는 스크립트는 다음과 같습니다.
function _ago($tm,$rcs = 0) {
$cur_tm = time();
$dif = $cur_tm-$tm;
$pds = array('second','minute','hour','day','week','month','year','decade');
$lngh = array(1,60,3600,86400,604800,2630880,31570560,315705600);
for($v = sizeof($lngh)-1; ($v >= 0)&&(($no = $dif/$lngh[$v])<=1); $v--); if($v < 0) $v = 0; $_tm = $cur_tm-($dif%$lngh[$v]);
$no = floor($no);
if($no <> 1)
$pds[$v] .='s';
$x = sprintf("%d %s ",$no,$pds[$v]);
if(($rcs == 1)&&($v >= 1)&&(($cur_tm-$_tm) > 0))
$x .= time_ago($_tm);
return $x;
}
스크립트가 처음 몇 줄에 다음과 같은 것을 시도하고 있다고 생각합니다 (다른 날짜 형식 수학).
$dif = 1252809479 - 2009-09-12 20:57:19;
타임 스탬프를 해당 (유닉스) 형식으로 변환하는 방법은 무엇입니까?
답변
사용 예 :
echo time_elapsed_string('2013-05-01 00:22:35');
echo time_elapsed_string('@1367367755'); # timestamp input
echo time_elapsed_string('2013-05-01 00:22:35', true);
지원되는 날짜 및 시간 형식을 입력 할 수 있습니다 .
출력 :
4 months ago
4 months ago
4 months, 2 weeks, 3 days, 1 hour, 49 minutes, 15 seconds ago
함수 :
function time_elapsed_string($datetime, $full = false) {
$now = new DateTime;
$ago = new DateTime($datetime);
$diff = $now->diff($ago);
$diff->w = floor($diff->d / 7);
$diff->d -= $diff->w * 7;
$string = array(
'y' => 'year',
'm' => 'month',
'w' => 'week',
'd' => 'day',
'h' => 'hour',
'i' => 'minute',
's' => 'second',
);
foreach ($string as $k => &$v) {
if ($diff->$k) {
$v = $diff->$k . ' ' . $v . ($diff->$k > 1 ? 's' : '');
} else {
unset($string[$k]);
}
}
if (!$full) $string = array_slice($string, 0, 1);
return $string ? implode(', ', $string) . ' ago' : 'just now';
}
답변
function time_elapsed_string($ptime)
{
$etime = time() - $ptime;
if ($etime < 1)
{
return '0 seconds';
}
$a = array( 365 * 24 * 60 * 60 => 'year',
30 * 24 * 60 * 60 => 'month',
24 * 60 * 60 => 'day',
60 * 60 => 'hour',
60 => 'minute',
1 => 'second'
);
$a_plural = array( 'year' => 'years',
'month' => 'months',
'day' => 'days',
'hour' => 'hours',
'minute' => 'minutes',
'second' => 'seconds'
);
foreach ($a as $secs => $str)
{
$d = $etime / $secs;
if ($d >= 1)
{
$r = round($d);
return $r . ' ' . ($r > 1 ? $a_plural[$str] : $str) . ' ago';
}
}
}
답변
$time_elapsed = timeAgo($time_ago); //The argument $time_ago is in timestamp (Y-m-d H:i:s)format.
//Function definition
function timeAgo($time_ago)
{
$time_ago = strtotime($time_ago);
$cur_time = time();
$time_elapsed = $cur_time - $time_ago;
$seconds = $time_elapsed ;
$minutes = round($time_elapsed / 60 );
$hours = round($time_elapsed / 3600);
$days = round($time_elapsed / 86400 );
$weeks = round($time_elapsed / 604800);
$months = round($time_elapsed / 2600640 );
$years = round($time_elapsed / 31207680 );
// Seconds
if($seconds <= 60){
return "just now";
}
//Minutes
else if($minutes <=60){
if($minutes==1){
return "one minute ago";
}
else{
return "$minutes minutes ago";
}
}
//Hours
else if($hours <=24){
if($hours==1){
return "an hour ago";
}else{
return "$hours hrs ago";
}
}
//Days
else if($days <= 7){
if($days==1){
return "yesterday";
}else{
return "$days days ago";
}
}
//Weeks
else if($weeks <= 4.3){
if($weeks==1){
return "a week ago";
}else{
return "$weeks weeks ago";
}
}
//Months
else if($months <=12){
if($months==1){
return "a month ago";
}else{
return "$months months ago";
}
}
//Years
else{
if($years==1){
return "one year ago";
}else{
return "$years years ago";
}
}
}
답변
이것은 실제로 내가 찾은 더 나은 솔루션입니다. jQuery를 사용하지만 완벽하게 작동합니다. 또한 SO 및 Facebook과 유사한 방식 으로 자동으로 새로 고침 되므로 업데이트를보기 위해 페이지를 새로 고칠 필요가 없습니다.
이 플러그인은 태그 datetime
에서 attr을 읽고 <time>
작성합니다.
e.g. "4 minutes ago" or "about 1 day ago
답변
왜 아무도 카본을 언급하지 않는지 모르겠습니다.
https://github.com/briannesbitt/Carbon
이것은 실제로 php dateTime (이미 여기에서 사용됨)의 확장이며 diffForHumans 메소드가 있습니다. 따라서 필요한 것은 다음과 같습니다.
$dt = Carbon::parse('2012-9-5 23:26:11.123789');
echo $dt->diffForHumans();
더 많은 예 : http://carbon.nesbot.com/docs/#api-humandiff
이 솔루션의 장점 :
- 그것은 미래의 날짜에 작동하며 2 개월 등과 같은 것을 반환 할 것입니다.
- 현지화를 사용하여 다른 언어를 구할 수 있으며 복수화가 제대로 작동합니다.
- 날짜를 다루는 다른 일에 Carbon을 사용하기 시작하면 결코 쉬운 일이 아닙니다.
답변
나는 다음과 같은 추악한 결과를 발견했다.
1 년, 2 개월, 0 일, 0 시간, 53 분 및 1 초
그 때문에 복수를 존중하고 빈 값을 제거하고 선택적으로 출력을 단축 할 수있는 기능을 실현했습니다.
function since($timestamp, $level=6) {
global $lang;
$date = new DateTime();
$date->setTimestamp($timestamp);
$date = $date->diff(new DateTime());
// build array
$since = array_combine(array('year', 'month', 'day', 'hour', 'minute', 'second'), explode(',', $date->format('%y,%m,%d,%h,%i,%s')));
// remove empty date values
$since = array_filter($since);
// output only the first x date values
$since = array_slice($since, 0, $level);
// build string
$last_key = key(array_slice($since, -1, 1, true));
$string = '';
foreach ($since as $key => $val) {
// separator
if ($string) {
$string .= $key != $last_key ? ', ' : ' ' . $lang['and'] . ' ';
}
// set plural
$key .= $val > 1 ? 's' : '';
// add date value
$string .= $val . ' ' . $lang[ $key ];
}
return $string;
}
훨씬 좋아 보인다 :
1 년 2 개월 53 분 1 초
선택적 $level = 2
으로 다음과 같이 단축하십시오.
1 년 2 개월
$lang
영어로만 필요한 경우 부품을 제거 하거나 필요에 맞게이 번역을 편집하십시오.
$lang = array(
'second' => 'Sekunde',
'seconds' => 'Sekunden',
'minute' => 'Minute',
'minutes' => 'Minuten',
'hour' => 'Stunde',
'hours' => 'Stunden',
'day' => 'Tag',
'days' => 'Tage',
'month' => 'Monat',
'months' => 'Monate',
'year' => 'Jahr',
'years' => 'Jahre',
'and' => 'und',
);
답변
function humanTiming ($time)
{
$time = time() - $time; // to get the time since that moment
$time = ($time<1)? 1 : $time;
$tokens = array (
31536000 => 'year',
2592000 => 'month',
604800 => 'week',
86400 => 'day',
3600 => 'hour',
60 => 'minute',
1 => 'second'
);
foreach ($tokens as $unit => $text) {
if ($time < $unit) continue;
$numberOfUnits = floor($time / $unit);
return $numberOfUnits.' '.$text.(($numberOfUnits>1)?'s':'');
}
}
echo humanTiming( strtotime($mytimestring) );