mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
7 lines
141 B
PHP
7 lines
141 B
PHP
<?php
|
|
|
|
spl_autoload_register(function($class) {
|
|
var_dump($class);
|
|
new Abc;
|
|
});
|
|
opcache_compile_file('preload_const_autoload_2.inc');
|