1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-26 21:14:43 +01:00
MadelineProto/tests/jit.php
2023-11-19 19:23:02 +01:00

13 lines
196 B
PHP

<?php declare(strict_types=1);
$status = opcache_get_status();
var_dump($status);
if (!$status["jit"]["on"]) {
echo "JIT is not enabled!".PHP_EOL;
die(1);
}
echo "OK!".PHP_EOL;
die(0);