當前位置: 首頁>>代碼示例>>PHP>>正文


PHP topic_time函數代碼示例

本文整理匯總了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 
    }
    ?>
開發者ID:laiello,項目名稱:cartonbank,代碼行數:31,代碼來源:topics.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 
}
?>
開發者ID:billerby,項目名稱:Surdeg,代碼行數:31,代碼來源:tag-single.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();
    ?>
;
開發者ID:billerby,項目名稱:Surdeg,代碼行數:31,代碼來源:header.php


注:本文中的topic_time函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。