有没有一种轻松的方法可以将 unix 时间戳、MySQL 时间戳、MySQL 日期时间(或任何其他标准日期和时间格式)转换为以下形式的字符串:
- 今天,下午 6:00
- 明天中午 12:30
- 星期三,下午 4:00
- 下周五上午 11:00
我不知道该怎么称呼这些 - 我猜是对话式的,当前对时间敏感的日期格式?
有没有一种轻松的方法可以将 unix 时间戳、MySQL 时间戳、MySQL 日期时间(或任何其他标准日期和时间格式)转换为以下形式的字符串:
我不知道该怎么称呼这些 - 我猜是对话式的,当前对时间敏感的日期格式?
据我所知,没有本机功能。我已经创建(开始)一个函数来做你想要的。
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 );
}
希望有帮助。
将 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"
现在,为了打印单词“today”而不是日期名称,您必须执行一些额外的逻辑来检查日期是否是今天:
$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);
}
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');
}
如果您要从数据库中提取此类数据
$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 字母以满足您的需要。
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';
}