1
0
mirror of https://github.com/danog/MadelineProto.git synced 2025-01-23 03:31:17 +01:00

12 lines
170 B
PHP
Raw Normal View History

2023-11-19 19:14:51 +01:00
<?php
$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);