1
我想知道PHP是否有內置函數來返回日期的相關性。例如:從時間戳(即今天,明天)獲取相對日期
$timestamp = time();
$other = time()+86400;
echo rel_date($timestamp); //prints Today
echo rel_date($other); //prints Tomorrow
我知道這是非常簡單的功能,但我不想重新發明輪子!
我想知道PHP是否有內置函數來返回日期的相關性。例如:從時間戳(即今天,明天)獲取相對日期
$timestamp = time();
$other = time()+86400;
echo rel_date($timestamp); //prints Today
echo rel_date($other); //prints Tomorrow
我知道這是非常簡單的功能,但我不想重新發明輪子!
據我所知,在具有格式選項,。OUPUTS「今天」,「昨天」,「明天」等功能,沒有內置..
我做他們自己,因爲這無論如何。看起來你需要自己構建它,畢竟,對不起:(
從['DateTime :: diff'開始 - 返回兩個DateTime對象之間的區別](http://www.php.net/manual/ en/datetime.diff.php) – Gordon
如果將相關性定義爲像今天的「接近度」那樣,我會使用像相關性(curr,other)= 1 /(diffdays(curr,other)+1)^ 2。 – Timo