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.
|
#!/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 opcache.enable_cli=On -d opcache.opt_debug_level=0x10000 " . $file); |