Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
  Fix SKIPIF jit test
This commit is contained in:
Ilija Tovilo 2023-10-04 15:06:40 +02:00
commit 20d2ecf494
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