mirror of
https://github.com/php/php-src.git
synced 2025-01-07 11:34:09 +08:00
3f86adb0ef
During preloading, check that all classes that have been included as part of the preload script itself (rather than through opcache_compile_file) can actually be preloaded, i.e. satisfy Windows restrictions, have resolved initializers and resolved property types. When resolving initializers and property types, also autoload additional classes. Because of this, the resolution runs in a loop.
7 lines
69 B
PHP
7 lines
69 B
PHP
<?php
|
|
|
|
class Test {
|
|
const X = UNDEF;
|
|
const Y = Foo::UNDEF;
|
|
}
|