mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-12-29 04:23:34 +00:00
Merge branch '3.0'
This commit is contained in:
commit
4f8fcedd94
@ -13,7 +13,7 @@
|
|||||||
// see https://github.com/php/php-src/issues/11917
|
// see https://github.com/php/php-src/issues/11917
|
||||||
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN' && function_exists('opcache_get_status') && !defined('PHPSECLIB_ALLOW_JIT')) {
|
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN' && function_exists('opcache_get_status') && !defined('PHPSECLIB_ALLOW_JIT')) {
|
||||||
$status = opcache_get_status();
|
$status = opcache_get_status();
|
||||||
if ($status && $status['jit']['enabled'] && $status['jit']['on']) {
|
if ($status && isset($status['jit']) && $status['jit']['enabled'] && $status['jit']['on']) {
|
||||||
throw new UnexpectedValueException(
|
throw new UnexpectedValueException(
|
||||||
'JIT on Windows is not currently supported'
|
'JIT on Windows is not currently supported'
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user