PHP устарел: нестатический метод vBulletinShutdown () :: init () - PullRequest
0 голосов
/ 03 марта 2019

Не удается заставить работать мой код phpBB.Ниже приведен журнал ошибок и раздел кода.

PHP устарел: нестатический метод vBulletinShutdown () :: init ()

Как я могу переписать эточтобы избежать этой ошибки?Ошибка является результатом запуска более старого кода php (php4) под более новой версией php (php7)

function vB_Registry()
{
    // variable to allow bypassing of gzip compression
    $this->nozip = defined('NOZIP') ? true : (@ini_get('zlib.output_compression') ? true : false);
    // variable that controls HTTP header output
    $this->noheader = defined('NOHEADER') ? true : false;

    // initialize the input handler
    $this->input = new vB_Input_Cleaner($this);

    // initialize the shutdown handler
    $this->shutdown = vB_Shutdown::init();

}
...