個人用ツール

「ver4/関数リファレンス/getContentModifiedDate」の版間の差分

提供: baserCMS公式ガイド

移動: 案内, 検索
行25: 行25:
 
####コード
 
####コード
 
<syntaxhighlight lang="php">
 
<syntaxhighlight lang="php">
<?php eho $this->BcBaser->getContentModifiedDate(); ?>
+
<?php echo $this->BcBaser->getContentModifiedDate(); ?>
 
</syntaxhighlight>
 
</syntaxhighlight>
  

2018年11月6日 (火) 01:13時点における版

[このコンテンツは内容調整中です]

説明

コンテンツ更新日を取得する。
コンテンツ更新日は、編集画面 > オプション > 作成者 > [更新日]から、手動で更新します。

使い方

<?php $this->BcBaser->getContentModifiedDate([$format]); ?>

パラメータ

(string) $format
フォーマット
初期値: 'Y/m/d H:i'

戻り値

(null|string)
null または コンテンツ更新日

用例

基本

コンテンツ更新日を取得し、echoで出力する。

コード

<?php echo $this->BcBaser->getContentModifiedDate(); ?>

出力

2018/10/27 23:30

応用

コンテンツ更新日を指定した書式で取得し、echoで出力する。

コード

<?php echo $this->BcBaser->getContentModifiedDate('M. j. D'); ?>

出力

Oct. 27. Sat

変更履歴

ソースファイル

関連資料

類似の関数