Browse Source

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

Andrew Collington 8 years ago
parent
commit
06a622d334
1 changed files with 2 additions and 1 deletions
  1. 2 1
      index.php

+ 2 - 1
index.php

@@ -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');
 }