1
0
Fork 0

Work-around for Windows opcache bug, fixes #6052

pull/6060/head
johnstevenson 2017-01-10 23:30:56 +00:00
parent f9f92dc9d8
commit 9aa213b329
1 changed files with 6 additions and 1 deletions

View File

@ -173,7 +173,12 @@ class XdebugHandler
$content .= $data.PHP_EOL;
}
$content .= PHP_EOL.'memory_limit='.ini_get('memory_limit').PHP_EOL;
$content .= 'memory_limit='.ini_get('memory_limit').PHP_EOL;
if (defined('PHP_WINDOWS_VERSION_BUILD')) {
// Work-around for PHP windows bug, see issue #6052
$content .= 'opcache.enable_cli=0'.PHP_EOL;
}
return @file_put_contents($this->tmpIni, $content);
}