mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00
19 lines
290 B
PHP
19 lines
290 B
PHP
--TEST--
|
|
Check for JIT enablement status
|
|
--SKIPIF--
|
|
<?php
|
|
if (ini_get("pcre.jit") === FALSE) {
|
|
die("skip no jit built");
|
|
}
|
|
--FILE--
|
|
<?php
|
|
|
|
ob_start();
|
|
phpinfo();
|
|
$info = ob_get_contents();
|
|
ob_end_clean();
|
|
|
|
var_dump(preg_match(",PCRE JIT Support .* enabled,", $info));
|
|
?>
|
|
--EXPECT--
|
|
int(1)
|