我正在使用CodeIgniter 3和PHP 5.7。
我使用以下命令添加了作曲家guzzlehttp
:
composer require guzzlehttp/guzzle:~6.0
在config.php
我放
$config['composer_autoload'] = TRUE;
在我的图书馆中,我使用
$client = new GuzzleHttp\Client();
但输出是:
严重性:错误
消息:未找到类'GuzzleHttp \ Client'
答案 0 :(得分:0)
尝试使用以下代码:
$client = new \GuzzleHttp\Client();