mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00

This make sure the tests do not fail if they are not run from the repository root. Closes GH-10266 Signed-off-by: George Peter Banyard <girgias@php.net>
7 lines
152 B
PHP
7 lines
152 B
PHP
<?php
|
|
|
|
spl_autoload_register(function($class) {
|
|
var_dump($class);
|
|
new Abc;
|
|
});
|
|
opcache_compile_file(__DIR__ . '/preload_const_autoload_2.inc');
|