私が取り組んでいるtodoリストアプリがあります。todo が作成されたときのタイムスタンプを表示し、ユーザーが形式を選択できるようにします。
このスニペットでは、コードは mySQL データベースから情報を取得して、日付をフォーマットする方法を確認します。
public function __toString(){
// The string we return is outputted by the echo statement
if ( $this->data['date_created'] == '') {
$date_created = date($GLOBALS["config"]["date_format"].' '.$GLOBALS["config"]["time_format"]);
}
else
$date_created = date($GLOBALS["config"]["date_format"].' '.$GLOBALS["config"]["time_format"], strtotime($this->data['date_created']));
(date_format という行と time_format という行から取得しています)
私はこのコードを実装しようとしています:
function relativeTime($dt,$precision=2) {
if(is_string($dt)) $dt = strtotime($dt);
$times=array( 365*24*60*60 => "year",
30*24*60*60 => "month",
7*24*60*60 => "week",
24*60*60 => "day",
60*60 => "hour",
60 => "minute",
1 => "second");
$passed=time()-$dt;
if($passed<5)
{
$output='less than 5 seconds ago';
}
else
{
$output=array();
$exit=0;
foreach($times as $period=>$name)
{
if($exit>=$precision || ($exit>0 && $period<60)) break;
$result = floor($passed/$period);
if($result>0)
{
$output[]=$result.' '.$name.($result==1?'':'s');
$passed-=$result*$period;
$exit++;
}
else if($exit>0) $exit++;
}
$output=implode(' and ',$output).' ago';
}
return $output;
}
別のコンボに置き換え$dt
て$date_created
試してみましたが、うまくいかないようです。relativetime が定義されていないことを示すフロントエンド エラーがあります (エラー メッセージに relativeTime とは表示されず、小文字の "t" が含まれます)。$date_created
「日前」形式で表示するにはどうすればよいですか? ありがとう!