如何检查php中命名空间的存在
2022-08-30 20:41:20
我有一个php库 https://github.com/tedivm/Fetch 它使用Fetch命名空间,我想在我的脚本中检查它的存在。
我的脚本代码:
// Load Fetch
spl_autoload_register(function ($class) {
$file = __DIR__ . '/vendor/' . strtr($class, '\\', '/') . '.php';
if (file_exists($file)) {
require $file;
return true;
}
});
if (!class_exists('\\Fetch')) {
exit('Failed to load the library: Fetch');
}
$mail = new \Fetch\Server($server, $port);
但始终显示此消息。但图书馆正在全面运作。
提前感谢您的任何帮助!