是否有一种无痛的方法可以将unix时间戳,MySQL时间戳,MySQL日期时间(或任何其他标准日期和时间格式)转换为以下形式的字符串:
我不确定该怎么称呼这些 - 我猜对话式,当前时间敏感的日期格式?
答案 0 :(得分:4)
我能说的最好,没有原生功能。我已经创建了一个函数来创建你想要的函数。
function timeToString( $inTimestamp ) {
$now = time();
if( abs( $inTimestamp-$now )<86400 ) {
$t = date('g:ia',$inTimestamp);
if( date('zY',$now)==date('zY',$inTimestamp) )
return 'Today, '.$t;
if( $inTimestamp>$now )
return 'Tomorrow, '.$t;
return 'Yesterday, '.$t;
}
if( ( $inTimestamp-$now )>0 ) {
if( $inTimestamp-$now < 604800 ) # Within the next 7 days
return date( 'l, g:ia' , $inTimestamp );
if( $inTimestamp-$now < 1209600 ) # Within the next 14, but after the next 7 days
return 'Next '.date( 'l, g:ia' , $inTimestamp );
} else {
if( $now-$inTimestamp < 604800 ) # Within the last 7 days
return 'Last '.date( 'l, g:ia' , $inTimestamp );
}
# Some other day
return date( 'l jS F, g:ia' , $inTimestamp );
}
希望有所帮助。
答案 1 :(得分:1)
将UNIX时间戳转换为格式的示例:
$time = time(); // UNIX timestamp for current time
echo strftime("%A, %l:%M %P"); // "Thursday, 12:41 pm"
要获取MySQL日期时间值,假设它从数据库中“2010-07-15 12:42:34”出来,请尝试:
$time = "2010-07-15 12:42:34";
echo strftime("%A, %l:%M %P"); // "Thursday, 12:42 pm"
现在,为了打印“今天”而不是日期名称,你必须做一些额外的逻辑来检查日期是否是今天:
$time = "2010-07-15 12:42:34";
$today = strftime("%Y-%m-%d");
// compare if $time strftime's to the same date as $today
if(strftime("%Y-%m-%d", $time) == $today) {
echo strftime("Today, %l:%M %P", $time);
} else {
echo strftime("%A, %l:%M %P", $time);
}
答案 2 :(得分:0)
答案 3 :(得分:0)
PHP日期函数有点混乱,因为它们有很多不同的方式,甚至新的类都建立在旧的类之上。对于那种类型的格式化,我称之为人性化的格式化,你将不得不编写自己的函数来完成它。
对于转换,你可以使用所提到的strtotime(),但是如果你正在处理纪元时代并且需要utc GMT时间,那么就有一些功能。 strtotime()会将纪元时间转换为本地服务器时间......这是我不想要的项目。
/**
* Converts a GMT date in UTC format (ie. 2010-05-05 12:00:00)
* Into the GMT epoch equivilent
* The reason why this doesnt work: strtotime("2010-05-05 12:00:00")
* Is because strtotime() takes the servers timezone into account
*/
function utc2epoch($str_date)
{
$time = strtotime($str_date);
//now subtract timezone from it
return strtotime(date("Z")." sec", $time);
}
function epoch2utc($epochtime, $timezone="GMT")
{
$d=gmt2timezone($epochtime, $timezone);
return $d->format('Y-m-d H:i:s');
}
答案 4 :(得分:0)
如果要从数据库中提取此类数据
$time = "2010-07-15 12:42:34";
然后这样做
$this->db->select('DATE_FORMAT(date, "%b %D %Y")AS date');
点击此处查看以人格形式显示数据的信息
http://www.w3schools.com/SQL/func_date_format.asp
以上代码采用codeigniter格式,但您只需将其转换为MYSQL的SELECT语句
$query = "SELECT `title`,`post`, DATE_FORMAT(date, "%a, %d %b %Y %T") AS date FROM `posts` LIMIT 0, 8 ";
您需要更改%a字母以满足您的需求。
答案 5 :(得分:0)
you will get exact result::
output // 28 years 7 months 7 days
function getAge(dateVal) {
var
birthday = new Date(dateVal.value),
today = new Date(),
ageInMilliseconds = new Date(today - birthday),
years = ageInMilliseconds / (24 * 60 * 60 * 1000 * 365.25 ),
months = 12 * (years % 1),
days = Math.floor(30 * (months % 1));
return Math.floor(years) + ' years ' + Math.floor(months) + ' months ' + days + ' days';
}