gpt4 book ai didi

基于 MySQL 的 PHP SQLite3 分页器给出错误

转载 作者:IT王子 更新时间:2023-10-29 06:23:27 25 4
gpt4 key购买 nike

我正在使用 SQLite3 并尝试调整我发现的分页器脚本。在更改似乎是 MYSQL 命令的内容后,它可以正常工作,但它不会显示正确数量的项目,并且似乎与它给出的结果不同。

我也收到以下错误,我不确定如何修复:

Notice: Undefined index: video in C:\xampp\htdocs\Projects\index.php on line 27

我使用的代码是:

分页器.php

<?php

class Paginator {

private $_conn;
private $_limit;
private $_page;
private $_query;
private $_total;

public function __construct( $conn, $query ) {
$this->_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 = '<ul class="' . $list_class . '">';
$class = ( $this->_page == 1 ) ? "disabled" : "";
$html .= '<li class="' . $class . '"><a href="?limit=' . $this->_limit . '&page=' . ( $this->_page - 1 ) . '">&laquo;</a></li>';

if ( $start > 1 ) {
$html .= '<li><a href="?limit=' . $this->_limit . '&page=1">1</a></li>';
$html .= '<li class="disabled"><span>...</span></li>';
}

for ( $i = $start ; $i <= $end; $i++ ) {
$class = ( $this->_page == $i ) ? "active" : "";
$html .= '<li class="' . $class . '"><a href="?limit=' . $this->_limit . '&page=' . $i . '">' . $i . '</a></li>';
}

if ( $end < $last ) {
$html .= '<li class="disabled"><span>...</span></li>';
$html .= '<li><a href="?limit=' . $this->_limit . '&page=' . $last . '">' . $last . '</a></li>';
}

$class = ( $this->_page == $last ) ? "disabled" : "";
$html .= '<li class="' . $class . '"><a href="?limit=' . $this->_limit . '&page=' . ( $this->_page + 1 ) . '">&raquo;</a></li>';
$html .= '</ul>';
return $html;
}

}

?>

索引.php

<?php
require_once 'Paginator.php';

$db = new SQLite3('latest.db');

$limit = ( isset( $_GET['limit'] ) ) ? $_GET['limit'] : 4;
$page = ( isset( $_GET['page'] ) ) ? $_GET['page'] : 1;
$links = ( isset( $_GET['links'] ) ) ? $_GET['links'] : 4;
$query = "SELECT ID, video FROM latest";

$Paginator = new Paginator( $db, $query );

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

<!DOCTYPE html>
<head>
<title>PHP Pagination</title>
<link rel="stylesheet" href="css/stylesheet.css">
</head>
<body>
<div class="container">
<div class="col-md-10 col-md-offset-1">
<h1>PHP Pagination</h1>

<?php for( $i = 0; $i < count( $results->data ); $i++ ) : ?>
<p><?php echo $results->data[$i]['video']; ?></p>
<?php endfor; ?>

<p><?php echo $Paginator->createLinks($links, 'pagination pagination-sm'); ?></p>

</div>
</div>
</body>
</html>

为了创建数据库并检查数据是否已添加,我运行了这个脚本一次:

<?php

// Create the Database
$db = new SQLite3('latest.db');

// Create the Table
$db->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 '<h1>The Following Data Was Created</h1>';

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

?>

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

编辑:

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

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

nwpj9_hrK_A

同时单击下一步和页面按钮会产生意想不到的结果,而不是页面列表的末尾,如果会随机给出一些东西的话。

最佳答案

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

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

    $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;
}

关于基于 MySQL 的 PHP SQLite3 分页器给出错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41551176/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com