我看到不同的库(在本例中为 Symfony)的 phpunit bootstrap.php 代码通常包括以下内容:
spl_autoload_register(function ($class) {
if (0 === strpos(ltrim($class, '/'), 'Symfony\Component\EventDispatcher')) {
if (file_exists($file = __DIR__.'/../'.substr(str_replace('\\', '/', $class), strlen('Symfony\Component\EventDispatcher')).'.php')) {
require_once $file;
}
}
});
我想知道在什么情况下类名会有前导斜杠?