1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00
Files
archived-php-src/ext/opcache/tests/preload_const_autoload.inc

8 lines
141 B
PHP

<?php
spl_autoload_register(function($class) {
var_dump($class);
new Abc;
});
opcache_compile_file('preload_const_autoload_2.inc');