mirror of
https://github.com/php/php-src.git
synced 2026-04-26 09:28:21 +02:00
be718e45b0
and a test to ensure it's enabled
15 lines
207 B
PHP
15 lines
207 B
PHP
--TEST--
|
|
Check for JIT enablement status
|
|
--FILE--
|
|
<?php
|
|
|
|
ob_start();
|
|
phpinfo();
|
|
$info = ob_get_contents();
|
|
ob_end_clean();
|
|
|
|
var_dump(preg_match(",PCRE JIT Support .* enabled,", $info));
|
|
?>
|
|
--EXPECT--
|
|
int(1)
|