TypePHP 编译器 https://swoole.com/aot/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

12 lines
317 B

#!/usr/bin/env php
<?php
if ($argc < 2) {
echo "Usage: php opcode.php <file>\n";
exit(1);
}
$file = $argv[1];
if (!file_exists($file)) {
echo "File not found: " . $file . "\n";
exit(1);
}
shell_exec("php -d zend_extension=opcache -d opcache.enable_cli=On -d opcache.opt_debug_level=0x10000 " . $file);