当前位置:  开发笔记 > 编程语言 > 正文

基于MySQL的PHP​​ SQLite3 Paginator给出了错误

如何解决《基于MySQL的PHP​​SQLite3Paginator给出了错误》经验,为你挑选了2个好方法。

我正在使用SQLite3,我正在尝试调整我发现的Paginator脚本.在改变看起来像是MYSQL命令之后,它有点起作用,但它没有显示正确数量的项目,并且似乎与它给出的结果不同.

我也收到以下错误,我不知道如何解决:

注意:未定义的索引:第27行的C:\ xampp\htdocs\Projects\index.php中的视频

我使用的代码是:

Paginator.php

_conn = $conn;
        $this->_query = $query;
        $rs= $this->_conn->query( $this->_query );
        $this->_total = count($rs);
    }

    public function getData( $limit = 10, $page = 1 ) {
        $this->_limit   = $limit;
        $this->_page    = $page;

        if ( $this->_limit == 'all' ) {
            $query      = $this->_query;
        } else {
            $query      = $this->_query . " LIMIT " . ( ( $this->_page - 1 ) * $this->_limit ) . ", $this->_limit";
        }
        $rs             = $this->_conn->query( $query );

        while ( $row = $rs->fetchArray() ) {
            $results[]  = $row;
        }

        $results[] = [];
        $result         = new stdClass();
        $result->page   = $this->_page;
        $result->limit  = $this->_limit;
        $result->total  = $this->_total;
        $result->data   = $results;
        return $result;
    }

    public function createLinks( $links, $list_class ) {
        if ( $this->_limit == 'all' ) {
            return '';
        }

        $last       = ceil( $this->_total / $this->_limit );
        $start      = ( ( $this->_page - $links ) > 0 ) ? $this->_page - $links : 1;
        $end        = ( ( $this->_page + $links ) < $last ) ? $this->_page + $links : $last;
        $html       = '
    '; $class = ( $this->_page == 1 ) ? "disabled" : ""; $html .= '
  • «
  • '; if ( $start > 1 ) { $html .= '
  • 1
  • '; $html .= '
  • ...
  • '; } for ( $i = $start ; $i <= $end; $i++ ) { $class = ( $this->_page == $i ) ? "active" : ""; $html .= '
  • ' . $i . '
  • '; } if ( $end < $last ) { $html .= '
  • ...
  • '; $html .= '
  • ' . $last . '
  • '; } $class = ( $this->_page == $last ) ? "disabled" : ""; $html .= '
  • »
  • '; $html .= '
'; return $html; } } ?>

的index.php

getData( $page, $limit );
?>


    
        PHP Pagination
        
    
    
        

PHP Pagination

data ); $i++ ) : ?>

data[$i]['video']; ?>

createLinks($links, 'pagination pagination-sm'); ?>

要创建数据库并检查数据是否已添加,我运行此脚本一次:

query('CREATE TABLE IF NOT EXISTS latest (ID INTEGER PRIMARY KEY ASC, video STRING)');

// Insert the data
$db->query('INSERT INTO latest (video) VALUES ("XoiEkEuCWog")');
$db->query('INSERT INTO latest (video) VALUES ("jsbeemdD2rQ")');
$db->query('INSERT INTO latest (video) VALUES ("hv44srAsAo4")');
$db->query('INSERT INTO latest (video) VALUES ("nwpj9_hrK_A")');
$db->query('INSERT INTO latest (video) VALUES ("sY3rIlrTTh8")');
$db->query('INSERT INTO latest (video) VALUES ("QpbQ4I3Eidg")');
$db->query('INSERT INTO latest (video) VALUES ("M0it_zMP-EM")');
$db->query('INSERT INTO latest (video) VALUES ("6X_C9E55CfM")');
$db->query('INSERT INTO latest (video) VALUES ("cNw8A5pwbVI")');
$db->query('INSERT INTO latest (video) VALUES ("J-gYJBsln-w")');

echo '

The Following Data Was Created

'; // Get the data $results = $db->query('SELECT ID, video FROM latest'); while ($row = $results->fetchArray()) { echo 'ID: ' . $row['ID'] . ', Video: ' . $row['video'] . '
'; } ?>

如何修复错误并使此代码正常工作?

编辑:

感谢建议修复删除"$ results [] = [];" 索引页面现在显示没有错误,但它没有按预期工作.

我所期望的是,由于$ limit设置为10,它将列出10个字符串并显示«1»分页器按钮,如果$ limit设置为5则显示5和'1,2»作为按钮但是当前它只显示1个字符串:

nwpj9_hrK_A

同时单击下一个和页面按钮会使其产生意外结果,而不是作为页面列表的末尾,如果给出一些随机的东西.



1> e4c5..:

您获得未定义索引错误的原因是因为这段代码

    while ( $row = $rs->fetchArray() ) {
        $results[]  = $row;
    }

    $results[] = [];  /** this line here **/

您正在重置结果.请删除该行.至于其余问题,请提供更多信息.

注意到您的更新.请看看Dhruv的答案,他似乎已经解决了其余的问题.



2> Dhruv Saxena..:

除了$results[] = []位(在返回的结果中添加了一个空行)之外,代码中存在一个非常非常小的问题:

getData()调用方法时index.php,我们有:

$results    = $Paginator->getData( $page, $limit );


然而,根据定义,它是:

public function getData( $limit = 10, $page = 1 ){
}

这意味着,即使看起来该$limit参数设置为至少获取4条记录,它也只是默认1记录.可以交换的地方肯定由一个人自行决定.但是,我碰巧在定义中做了修复.另外,$results在方法本身的开头声明是很好的(或者,当遍历可显示结果的最后一页时,我们再次得到一个未定义的错误):

public function getData($page = 1, $limit = 10) {
    $this->_limit   = $limit;
    $this->_page    = $page;
    $results        = array();

    if ( $this->_limit == 'all' ) {
        $query      = $this->_query;
    } 
    else {
        $query      = $this->_query . " LIMIT " . ( ( $this->_page - 1 ) * $this->_limit ) . ", $this->_limit";
    }
    $rs             = $this->_conn->query( $query );

    while ( $row = $rs->fetchArray() ) {
        $results[]  = $row;
    }

    //$results[] = [];
    $result         = new stdClass();
    $result->page   = $this->_page;
    $result->limit  = $this->_limit;
    $result->total  = $this->_total;
    $result->data   = $results;
    return $result;
}

推荐阅读
重庆制造漫画社
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有