jjzjj

php - 严重性 : 8192 Message: Methods with the same name as their class will not be constructors in a future version of PHP;

coder 2024-04-11 原文

严重性:8192

消息:在未来的 PHP 版本中,与类同名的方法将不再是构造函数; CI_Pagination 有一个已弃用的构造函数

文件名:libraries/Pagination.php

行号:27

class CI_Pagination {

    var $base_url           = ''; // The page we are linking to
    var $total_rows         = ''; // Total number of items (database results)
    var $per_page           = 10; // Max number of items you want shown per page
    var $num_links          =  2; // Number of "digit" links to show before/after the currently viewed page
    var $cur_page           =  0; // The current page being viewed
    var $first_link         = '‹ First';
    var $next_link          = '>';
    var $prev_link          = '<';
    var $last_link          = 'Last ›';
    var $uri_segment        = 3;
    var $full_tag_open      = '';
    var $full_tag_close     = '';
    var $first_tag_open     = '';
    var $first_tag_close    = ' ';
    var $last_tag_open      = ' ';
    var $last_tag_close     = '';
    var $cur_tag_open       = ' ';
    var $cur_tag_close      = '';
    var $next_tag_open      = ' ';
    var $next_tag_close     = ' ';
    var $prev_tag_open      = ' ';
    var $prev_tag_close     = '';
    var $num_tag_open       = ' ';
    var $num_tag_close      = '';
    var $page_query_string  = FALSE;
    var $query_string_segment = 'per_page';

最佳答案

以前我们使用类名本身来声明类构造函数

Class A
{

public function a(){
}
}

现在你需要改变 a() 来构造,像这样

public function __construct(){
}

错误将消失。

关于php - 严重性 : 8192 Message: Methods with the same name as their class will not be constructors in a future version of PHP;,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40320062/

有关php - 严重性 : 8192 Message: Methods with the same name as their class will not be constructors in a future version of PHP;的更多相关文章

随机推荐