PHP视频多个页面无法正常工作

时间:2016-01-21 21:06:17

标签: php video

我正在开发一个简单的vlog网站项目,我试图每页只显示20个视频缩略图,我在索引中编写了这段代码,将视频分成多个页面,然后将它们分页......问题是,对于无限页面,它每页显示相同的第一个视频缩略图20次。

我真的需要这段代码的帮助

<?php

   require_once ('db.php') ;
   require_once ('VideosApi.php') ;
   $count = mysql_query('SELECT COUNT(id) AS numb FROM videos ORDER BY id');  
   $array = mysql_fetch_assoc($count);
   $number = $array['numb'];  
   mysql_free_result($count);  
   $PerPage = 20;
   $nbPage = ceil(abs($number/$PerPage));
   if(isset($_GET['page']) && $_GET['page'] > 0 && $_GET['page'] <= $nbPage && preg_match('#^[0-9]+$#',$_GET['page'])){ $cPage = $_GET['page']; }
   else{ $cPage = 1; }  

   $Query = mysql_query('SELECT * FROM Videos ORDER BY id LIMIT '.(($cPage-1) * $PerPage).','.$PerPage);  

              $videos = Videos_Get() ;
           if ($videos == Null)
             die ('problem');

        $vcount = @count ($videos) ;

           if ($vcount == 0)
             die('no videos') ;



        For ($i = 0; $i < $vcount; $i++)
          {
        $video = $videos [$i];

        if ($video->time > 3600)
            $duration = gmdate("H:i:s",$video->time);
        else
            $duration = gmdate("i:s",$video->time);




        while($Rows = mysql_fetch_assoc($Query)){ 

          echo ( "<div class=\"video\">
                <a href=\"video.php?id=$video->id\"><img src=\"$video->img\"></a><span class=\"class-video-name\">$video->name</span>
                <div class=\"class-video-footer\">
                <span class=\"class-video-duration\">$duration</span>
                </div>
         </div>") ; }   

        } ?>

1 个答案:

答案 0 :(得分:0)

在我们得到正确答案之前的一些提示:

  1. 请勿使用mysql_*。该系列函数现已弃用,并且将在PHP的未来版本中删除支持。为了延长代码使用寿命,请考虑使用MySQLiPDO
  2. 使用is_numeric()检查字符串是否具有数值。对于这样一个简单的任务,使用preg_match()非常重。
  3. 尽量避免在MySQL查询中使用SELECT *。您很少需要表中的所有,因此获取行的所有字段为very inefficient(特别是如果您没有以最佳方式使用索引)。
  4. 话虽如此,我已经花了一些时间按照我上面提到的做法重写你的代码。下面是修改过的代码,下面是对错误的解释:

    更新db.php,如下所示:

    <?php
    
    $db = new PDO( 'mysql:dbname=DATABASE_NAME;host=127.0.0.1', 'DATABASE_USER', 'DATABASE_PASSWORD' );
    
    ?>
    

    现在为您的主文件:

    <?php
    
    require_once 'db.php';
    require_once 'VideosApi.php';
    
    $count = $db->query( 'SELECT COUNT(id) AS total FROM videos' )->fetchObject();
    $number = $count->total;
    
    $perPage = 20;
    $pages   = ceil( $number / $perPage );
    
    $page    = ( isset($_GET['page']) ) ? $_GET['page'] : 1;
    $page    = ( $page < 1 || $page > $pages || !is_numeric($page) ) ? 1 : $page;
    
    $offset  = ($page - 1) * $perPage;
    $query   = $db->query( 'SELECT id, img, name, time FROM videos ORDER BY id LIMIT '.$offset.','.$perPage );
    
    if( $query->rowCount() < 1 )
    {
        die( 'No videos' );
    }
    
    $html = '';
    
    while( $video = $query->fetchObject() )
    {
        $duration = ($video->time > 3600) ? gmdate('H:i:s', $video->time) : gmdate('i:s', $video->time);
    
        $html.= '<div class="video">';
        $html.= "\n\t".'<a href=\"video.php?id='.$video->id.'">';
        $html.= "\n\t\t".'<img src="'.$video->img.'" />';
        $html.= "\n\t".'</a>';
        $html.= "\n\t".'<span class="class-video-name">'.$video->name.'</span>';
        $html.= "\n\t".'<div class="class-video-footer">';
        $html.= "\n\t\t".'<span class="class-video-duration">'.$duration.'</span>';
        $html.= "\n\t".'</div>';
        $html.= "\n".'</div>';
    }
    
    echo $html;
    
    ?>
    

    原始代码的问题有点难以确定,因为您没有提供VideosApi.php的内容,我假设您定义Videos_Get()。无论如何,我怀疑正在发生的事情是Videos_Get()实际上忽略了你的所有分页,但正如我所说,它很难诊断,因为我们无法看到你的所有代码!