gpt4 book ai didi

php - 在 laravel 5.3 中调用 SEOStats 实例时找不到类 'SEOstats\SEOstats'

转载 作者:搜寻专家 更新时间:2023-10-31 21:49:24 28 4
gpt4 key购买 nike

我正在尝试在 laravel 中使用 SEOstats php 包,我已经使用 composer 安装了它,然后在我的 Controller 中我使用了它,如下所示:

use SEOstats\Services as SEOstats;

class ReportageController extends Controller
{
public function store(Request $request)
{

$url = 'http://www.google.com/';

// Create a new SEOstats instance.
$seostats = new \SEOstats\SEOstats;

// Bind the URL to the current SEOstats instance.
if ($seostats->setUrl($url)) {

dd( SEOstats\Alexa::getGlobalRank());
}
}
}

问题是我收到此错误消息:

未找到“SEOstats\SEOstats”类

我已经将命名空间更改为不同的类型,但仍然出现此错误。关于如何让它在 laravel 5.3 中工作的任何建议

最佳答案

$seostats = new SEOstats; 会成功的,

因为您导入了类,所以不需要 \ 前缀

关于php - 在 laravel 5.3 中调用 SEOStats 实例时找不到类 'SEOstats\SEOstats',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46523784/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com