Split out function return value from being used in empty() call, making the script compatible with PHP 5.4. (#24)

This commit is contained in:
Andrew Collington 2017-06-07 11:59:24 +01:00
parent c9664f24db
commit 06a622d334

View file

@ -38,7 +38,8 @@ if (!extension_loaded('Zend OPcache')) {
die('The Zend OPcache extension does not appear to be installed');
}
if (empty(ini_get('opcache.enable'))) {
$ocEnabled = ini_get('opcache.enable');
if (empty($ocEnabled)) {
die('The Zend OPcache extension is installed but not turned on');
}