Merge branch 'PHP-8.1' into PHP-8.2

* PHP-8.1:
  Fix SKIPIF jit test
This commit is contained in:
Ilija Tovilo 2023-10-04 15:06:32 +02:00
commit 6f8261ed79
No known key found for this signature in database
GPG Key ID: A4F5D403F118200A

View File

@ -9,7 +9,7 @@ zend_test.replace_zend_execute_ex=1
opcache
zend_test
--SKIPIF--
<?php if (!isset(opcache_get_status()["jit"])) die('skip: JIT is not available'); ?>
<?php if ((opcache_get_status()['jit']['on'] ?? false) === false) die('skip: JIT is not available'); ?>
--FILE--
<?php