搜索结果错误

时间:2013-07-27 11:41:08

标签: php search

我在页面中有一个搜索字段。但是如果没有匹配的结果,则会抛出错误“致命错误:在非对象上调用成员函数show()”。我附上了截图。

enter image description here

    <?php
       if ( isset($_REQUEST['usersearch']) && $_REQUEST['usersearch'] )
        printf( '<span class="subtitle">' . __('Search results for &#8220;%s&#8221;') .
   '</span>', esc_html( $_REQUEST['usersearch'] ) );
    ?>

但错误行是(第228行): -

    <div class='tablenav-pages'>
        <?php echo $p->show();  // Echo out the list of paging. ?>
    </div>

我需要删除搜索结果中的错误。它应该只显示“找不到任何项目”。

   function pager($items)
    {
   global $limit;
   global $p;
   global $searchTerm;
   global $pageLimit;

if($items > 0) {
    $p = new pagination;
    $p->items($items);
    $p->limit($pageLimit); // Limit entries per page
    $p->target("admin.php?page=User Control&usersearch=".$_REQUEST['usersearch']."&page-limit=".$_REQUEST['page-limit']);
    $p->currentPage($_GET[$p->paging]); // Gets and validates the current page
    $p->calculate(); // Calculates what to show
    $p->parameterName('paging');
    $p->adjacents(1); //No. of page away from the current page

    if(!isset($_GET['paging'])) {
        $p->page = 1;
    } else {
        $p->page = $_GET['paging'];
    }

    //Query for limit paging
    $limit = "LIMIT " . ($p->page - 1) * $p->limit  . ", " . $p->limit;

} else {
    echo "No Record Found";
}

}

2 个答案:

答案 0 :(得分:1)

您收到错误是因为您试图显示未定义的对象...使用语句检查......这是前提。

   <div class='tablenav-pages'>    
   <? if(is_object($p)){echo $p->show();} ?>
   </div>

答案 1 :(得分:0)

<?php
if (isset($p) && is_object($p)){
    $p->show();
}
?>