我有一个
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);
在此先感谢您的帮助!@H_403_2@
您需要在我认为的class_exists中使用整个命名空间.所以类似于:
原文链接:https://www.f2er.com/php/138428.htmlclass_exists('Fetch\\Server')