f5569e4755
I think this dir shouldn't have anything non-necessary in the root.
13 linhas
182 B
PHP
13 linhas
182 B
PHP
<?php
|
|
|
|
function testStartup($x) {
|
|
error_log("testStartup called");
|
|
}
|
|
|
|
if (isset($_ENV['HHVM'])) {
|
|
error_log("HHVM");
|
|
}
|
|
if (isset($_ENV['HHVM_JIT'])) {
|
|
error_log("HHVM_JIT");
|
|
}
|