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


PHP Tags::format_top方法代碼示例

本文整理匯總了PHP中Tags::format_top方法的典型用法代碼示例。如果您正苦於以下問題:PHP Tags::format_top方法的具體用法?PHP Tags::format_top怎麽用?PHP Tags::format_top使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Tags的用法示例。


在下文中一共展示了Tags::format_top方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: count

				<li>Torrent groups: <?php 
echo $NumGroups;
?>
</li>
				<li>Artists: <?php 
echo count($ArtistCount);
?>
</li>
			</ul>
		</div>
		<div class="box box_tags">
			<div class="head"><strong>Top Tags</strong></div>
			<div class="pad">
				<ol style="padding-left: 5px;">
<?php 
Tags::format_top(5);
?>
				</ol>
			</div>
		</div>
		<div class="box box_artists">
			<div class="head"><strong>Top Artists</strong></div>
			<div class="pad">
<?php 
$Indent = "\t\t\t\t";
if (count($ArtistCount) > 0) {
    echo "{$Indent}<ol style=\"padding-left: 5px;\">\n";
    uasort($ArtistCount, 'compare');
    $i = 0;
    foreach ($ArtistCount as $ID => $Artist) {
        $i++;
開發者ID:Kufirc,項目名稱:Gazelle,代碼行數:31,代碼來源:torrents.php

示例2: count

 user<?php 
echo count($UserAdditions) > 1 ? 's' : '';
?>
</li>
				<li>Last updated: <?php 
echo time_diff($Updated);
?>
</li>
			</ul>
		</div>
		<div class="box box_tags">
			<div class="head"><strong>Top Tags</strong></div>
			<div class="pad">
				<ol style="padding-left: 5px;">
<?php 
Tags::format_top(5, 'collages.php?action=search&amp;tags=');
?>
				</ol>
			</div>
		</div>
<?php 
if (!empty($TopArtists)) {
    ?>
		<div class="box box_artists">
			<div class="head"><strong>Top Artists</strong></div>
			<div class="pad">
				<ol style="padding-left: 5px;">
<?php 
    uasort($TopArtists, 'compare');
    $i = 0;
    foreach ($TopArtists as $ID => $Artist) {
開發者ID:Kufirc,項目名稱:Gazelle,代碼行數:31,代碼來源:torrent_collage.php

示例3: number_format

    ?>
>Prefer Bonus Tracks</option>
					</select>
					<input type="submit" style="width: 210px;" value="Download" />
				</form>
			</div>
		</div>
<?php 
}
//if (check_perms('zip_downloader'))
?>
		<div class="box box_tags">
			<div class="head"><strong>Tags</strong></div>
			<ul class="stats nobullet">
<?php 
Tags::format_top(50, 'torrents.php?taglist=', $Name);
?>
			</ul>
		</div>
<?php 
// Stats
?>
		<div class="box box_info box_statistics_artist">
			<div class="head"><strong>Statistics</strong></div>
			<ul class="stats nobullet">
				<li>Number of groups: <?php 
echo number_format($NumGroups);
?>
</li>
				<li>Number of torrents: <?php 
echo number_format($NumTorrents);
開發者ID:Kufirc,項目名稱:Gazelle,代碼行數:31,代碼來源:artist.php


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