我有一个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);
但始终显示此消息。但图书馆正在全面运作。
提前感谢您的帮助!