私のデータベースには日付テーブルがあります
news_last_modified
2013-04-12 13:04:18
このスタイルになっています。
時刻ではなく日付だけを選択するにはどうすればよいですか? frontフロントエンドコードは、このようなものです。 ' n left join ' . TABLE_NEWS_ARTICLES_TEXT . ' nt (n.article_id = nt.article_id および nt. language_id = '' . (int)$_SESSION['langages_id'] . '') および n.news_status = '1'' . ' n.article_id DESC 制限 6 ';
$news = $db->Execute($news_list_by_author_sql);
$i = 0;
$article_array = array();
while (!$news->EOF) {
$article_array[$i] = array(
'articleId' => $news->fields['article_id'],
'articledate ' =>fields['news_last_modified'],
'articleName' => ストリップスラッシュ($news->fields['news_article_name']),
$i++; -> ;MoveNext();
} // 終了 while
} else {
$articlesNotFound = true
}
?> -- ----------------
'articledate' => $news->fields['news_last_modified']
助けてください。私は初心者です。勉強中
ディスカッションに返信(解決策)
date()
$str="2013-04-12 13:04:18"; $ar=explode(" ",$str); print_r($ar);//Array ( [0] => 2013-04-12 [1] => 13:04:18 ) $t=explode(" ",$news->fields['news_last_modified']); 'articledate' => $t[0],
'articledate' => date("Y-m-d",strtotime($news->fields['news_last_modified'])),$news_list_by_author_sql='select n.article_id,date_format(n.news_last_modified ," %Y-%m-%d") as news_last_modified , nt.news_article_name from ' . TABLE_NEWS_ARTICLES . ' n left join ' . T...
が出ます。