summaryrefslogtreecommitdiff
path: root/ext/opcache/tests/preload_const_autoload.inc
blob: b9634de49a56ebb795b5392abd8c26d0ad30f9ad (plain)
1
2
3
4
5
6
7
<?php

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