blob: de3797e453d91184ff077c1f3ec410b57e5b3676 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
if (isset($_GET['chdir']) && $_GET['chdir'] != "") {
if (!chdir($_GET['chdir'])) {
echo "failure to chdir(" . $_GET['chdir'] . ")\n";
exit;
}
}
$opcache = -1;
if (function_exists('opcache_get_status')) {
$status = opcache_get_status();
$opcache = $status['opcache_enabled'];
}
header('X-OPcache: ' . $opcache);
print(getcwd());
?>
|