Digg Style分页类

时间:2012-09-14 11:12:21

标签: php digg

我是PHP的新手,过去几天一直在尝试构建我的第一个项目,它主要用作博客 - 只是让我对如何查询数据库以及诸如此类的东西感到满意。

我现在希望能够在我的页面上对结果进行分页,这是我到目前为止所做的:

<?php
include_once 'inc/functions.inc.php';
include_once 'inc/db.inc.php';

$db = new PDO(DB_INFO, DB_USER, DB_PASS);

$id = (isset($_GET["id"])) ? (int) $_GET["id"] : NULL;

$e = retrievePosts($db, $id);

$fulldisp = array_pop($e);
?>
<div id="blogposts">
    <?php
    if ($fulldisp == 1) {
        ?>
        <span class="postdate"><?php echo $e["date"] ?></span>
        <span class="posttitle"><?php echo $e["title"] ?></span>
        <br/>
        <br/>
        <span class="postbody">
            <?php echo $e["body"] ?>
        </span>
        <?php
    }//end if
    else {
        foreach ($e as $entry) {
            ?>
            <div class="postholder">
                <span class="postdate"><?php echo $entry["date"] ?></span>
                <span class="posttitle">
                    <a href="?id=<?php echo $entry['id'] ?>"><?php echo $entry['title'] ?></a>
                </span>
                <br/>
                <br/>
                <span class="postbody">
        <?php echo $entry["resume"] ?>
                </span>
            </div>
                    <?php
                }//end foreach
            }//end 
            ?>
</div>

这是我的功能:

<?php

function retrievePosts($db, $id = NULL) {
    if (isset($id)) { //se foi fornecido ID
        $sql = "SELECT title, body, date
            FROM blog
            WHERE id=?
            LIMIT 1";
        $stmt = $db->prepare($sql);
        $stmt->execute(array($_GET["id"]));

        $e = $stmt->fetch(); //guardar em array
        $fulldisp = 1; //uma só entrada
    } 
    else 
    {
        $sql = "SELECT id, title, resume, date
            FROM blog
            ORDER BY date DESC";   

        foreach($db->query($sql) as $row) 
        {
            $e[] = array("id" => $row["id"], "title" => $row["title"], "resume" => $row["resume"], "date" => $row["date"]);
        }
        $fulldisp = 0; //multiplas entradas
    }
    //funçoes só retornam um valor, inserimos fulldisp no fim de $e e separamos
    //os valores de novo no index.php
    array_push($e, $fulldisp);
    return $e;
}

?>

这种方式的工作方式是,页面是根据URL构建的:

如果有id,则只显示该ID的内容。

如果URL中没有id,它现在显示页面中的所有条目。

我现在希望能够对这些条目进行分页,因此在浏览Stackoverflow之后,最流行的解决方案似乎是使用 Digg Style Pagination Class ,在此处记录:{{3 }}

我已经下载了这个类,但是我无法弄清楚如何让它正常工作,我对这个类没有数据库查询的事实感到困惑(我希望这个使用LIMIT ),我想知道Stack上的任何人是否可以帮助我在我的代码上实现这个类,或者是否有关于如何执行此操作的详细文档来源。

1 个答案:

答案 0 :(得分:0)

function retrievePosts($db, $id = NULL, $page = 1, $rpp = 5) {
    if (isset($id)) { //se foi fornecido ID
        $sql = "SELECT title, body, date
            FROM blog
            WHERE id=?
            LIMIT 1";
        $stmt = $db->prepare($sql);
        $stmt->execute(array($id));

        $e = $stmt->fetch(); //guardar em array
        $fulldisp = 1; //uma só entrada
    }
    else
    {
        if(!is_numeric($page)) {
            $page = 1;
        }

        if(!is_numeric($rpp)) {
            $rpp = 5;
        }

        $sql = "SELECT id, title, resume, date
            FROM blog
            ORDER BY date DESC
            LIMIT ?
            OFFSET ?
        ";

        $stmt = $db->prepare($sql);
        $stmt->execute(array($page, $rpp * $page));

        foreach($stmt->fetch() as $row)
        {
            $e[] = array("id" => $row["id"], "title" => $row["title"], "resume" => $row["resume"], "date" => $row["date"]);
        }
        $fulldisp = 0; //multiplas entradas
    }
    //funçoes só retornam um valor, inserimos fulldisp no fim de $e e separamos
    //os valores de novo no index.php
    array_push($e, $fulldisp);
    return $e;
}

$ rpp - 每页记录

我也想:

$stmt->execute(array($_GET["id"]));

应该是:

$stmt->execute(array($id));