Всем привет! Хочу перевести TorrentPier на PHP7. Так как скорость работы, превышает в 2 раза. И столкнулся с рядом ошибок Deprecated. Опишу как их исправлять:
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; ads_common has a deprecated constructor in /library/includes/functions.php on line 119
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Date_Delta has a deprecated constructor in /library/includes/functions.phpon line 537
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; user_common has a deprecated constructor in /library/includes/sessions.php on line 8
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Template has a deprecated constructor in /library/includes/template.php on line 36
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; sql_db has a deprecated constructor in /library/includes/core/mysql.php on line 5
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; bbcode has a deprecated constructor in /library/includes/bbcode.php on line 442
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; words_rate has a deprecated constructor in /library/includes/bbcode.php on line 843
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; ads_common has a deprecated constructor in /library/includes/functions.php on line 119
Код:
function ads_common ()
исправляем на:
function __construct ()
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Date_Delta has a deprecated constructor in /library/includes/functions.phpon line 537
Код:
function Date_Delta()
исправляем на:
function __construct ()
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; user_common has a deprecated constructor in /library/includes/sessions.php on line 8
Код:
function user_common ()
исправляем на:
function __construct ()
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Template has a deprecated constructor in /library/includes/template.php on line 36
Код:
function Template($root = '.')
исправляем на:
function __construct($root = '.')
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; sql_db has a deprecated constructor in /library/includes/core/mysql.php on line 5
Код:
function sql_db ($cfg_values)
исправляем на:
function __construct ($cfg_values)
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; bbcode has a deprecated constructor in /library/includes/bbcode.php on line 442
Код:
function bbcode ()
исправляем на:
function __construct ()
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; words_rate has a deprecated constructor in /library/includes/bbcode.php on line 843
Код:
function words_rate ()
исправляем на:
function __construct ()