1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-30 06:18:58 +01:00
MadelineProto/tests/jit.php

13 lines
196 B
PHP
Raw Normal View History

2023-11-19 19:23:02 +01:00
<?php declare(strict_types=1);
2023-11-19 19:14:51 +01:00
$status = opcache_get_status();
var_dump($status);
if (!$status["jit"]["on"]) {
echo "JIT is not enabled!".PHP_EOL;
die(1);
}
echo "OK!".PHP_EOL;
2023-11-19 19:23:02 +01:00
die(0);