如何检查php中是否存在命名空间

前端之家收集整理的这篇文章主要介绍了如何检查php中是否存在命名空间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个 PHPhttps://github.com/tedivm/Fetch,它使用Fetch命名空间,我想在我的脚本中检查它的存在.

我的脚本代码:@H_403_2@

// 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);

但始终显示此消息.但图书馆正在全力以赴.@H_403_2@

在此先感谢您的帮助!@H_403_2@

您需要在我认为的class_exists中使用整个命名空间.所以类似于:
class_exists('Fetch\\Server')
原文链接:https://www.f2er.com/php/138428.html

猜你在找的PHP相关文章