Procházet zdrojové kódy

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

Andrew Collington před 8 roky
rodič
revize
06a622d334
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  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');
 }