让我的phpBB代码无法正常工作。下面是日志错误和代码部分。
不推荐使用PHP:非静态方法vBulletinShutdown():: init()
如何重新编写此代码以避免发生此错误?该错误是由于在较新的php版本(php7)下运行较早的php(php4)代码导致的。
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();
}