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


PHP post::get_parent_id方法代碼示例

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


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

示例1: array

        if ($row['category'] != "generic") {
            if (!array_key_exists($row['category'], $categories)) {
                $categories[$row['category']] = array();
            }
            $categories[$row['category']][] = $ctag;
            unset($ttags[array_search($ctag, $ttags)]);
            $ttags = array_values($ttags);
        }
    }
    require "includes/header.php";
    echo '<div id="content"><div id="post-view">';
    if ($post->has_children($id)) {
        echo '<div style="background: #f0f0f0; padding: 10px; text-align: center; border: 3px solid #dadada;">This post has <a href="index.php?page=post&s=list&tags=parent:' . $id . '"><b>child posts</b></a>.</div><br><br>';
    }
    if ($post->has_parent($id)) {
        echo '<div style="background: #f0f0f0; padding: 10px; text-align: center; border: 3px solid #dadada;">This post has a <a href="index.php?page=post&s=view&id=' . $post->get_parent_id($id) . '"><b>parent post</b></a>.</div><br><br>';
    }
    echo '<div class="sidebar"><div class="space">
		<h5>Search</h5>
		<form action="index.php?page=search" method="post">
		<input id="stags" name="tags" size="20" type="text" />
		<br /><input name="commit" style="margin-top: 3px; background: #fff; border: 1px solid #dadada; width: 172px;" type="submit" value="Search" />
		</form><small>(Supports wildcard *)</small>
		</div>
		<div id="tag_list">
		<!--<h5>Tags</h5>-->
		<ul>';
    //foreach($special_tags as $cur_tag)
    foreach ($categories as $cat => $tag_arr) {
        echo "<h5>" . ucfirst(str_replace('_', ' ', $cat));
        if (count($tag_arr) > 1) {
開發者ID:Jerglekakan,項目名稱:someGelbooruScripts,代碼行數:31,代碼來源:post_view.php


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