当前位置: 首页>>代码示例>>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;未经允许,请勿转载。