本文整理汇总了PHP中topic_time函数的典型用法代码示例。如果您正苦于以下问题:PHP topic_time函数的具体用法?PHP topic_time怎么用?PHP topic_time使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了topic_time函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: topic_start_time
topic_start_time('Y/m/d\\<\\b\\r \\/\\>H:i:s');
} else {
printf(__('%s ago'), get_topic_start_time('since'));
}
?>
</td>
<td class="freshness num"><a href="<?php
topic_last_post_link();
?>
" title="<?php
echo esc_attr(sprintf(__('Last post by %s'), get_topic_last_poster()));
?>
">
<?php
if (get_topic_time('U') < time() - 86400) {
topic_time('Y/m/d\\<\\b\\r \\/\\>H:i:s');
} else {
printf(__('%s ago'), get_topic_time('since'));
}
?>
<?php
//topic_time( bb_get_datetime_formatstring_i18n() );
?>
</a></td>
</tr>
<?php
}
?>
示例2: topic_link
topic_link();
?>
"><?php
topic_title();
?>
</a></td>
<td class="num"><?php
topic_posts();
?>
</td>
<td class="num"><?php
topic_last_poster();
?>
</td>
<td class="num"><small><?php
topic_time();
?>
</small></td>
</tr>
<?php
}
?>
</table>
<div class="nav">
<?php
tag_pages();
?>
</div>
<?php
}
?>
示例3: bb_title
<title><?php
bb_title();
?>
</title>
<?php
bb_feed_head();
?>
<?php
if (is_topic() && bb_is_user_logged_in()) {
?>
<script type="text/javascript">
var lastMod = <?php
topic_time('timestamp');
?>
;
var page = <?php
global $page;
echo $page;
?>
;
var currentUserId = <?php
bb_current_user_info('id');
?>
;
var topicId = <?php
topic_id();
?>
;