当我使用 Z-Ray 在服务器上加载 10 月份的安装时,我收到以下错误:
// 用作解析器以对这些对象进行更精细的解析。
if ($concrete instanceof Closure)
{
return $concrete($this, $parameters);
}
$reflector = new ReflectionClass($concrete);
// If the type is not instantiable, the developer is attempting to resolve
// an abstract type such as an Interface of Abstract Class and there is
// no binding registered for the abstractions so we need to bail out.
if ( ! $reflector->isInstantiable())
{
错误来自这一行:$reflector = new ReflectionClass($concrete);
作为一个ReflectionException
.
我不知道为什么要这样做,但是在 XAMPP 上,这不存在。
URL:有 Z-Ray和没有 Z-Ray。相同的文件,复制/粘贴。
谢谢