CodeIgniter找不到guzzlehttp

时间:2017-02-07 13:24:22

标签: php codeigniter

我正在使用CodeIgniter 3和PHP 5.7。 我使用以下命令添加了作曲家guzzlehttp

composer require guzzlehttp/guzzle:~6.0

config.php我放

$config['composer_autoload'] = TRUE;

在我的图书馆中,我使用

$client = new GuzzleHttp\Client();

但输出是:

  

严重性:错误

     

消息:未找到类'GuzzleHttp \ Client'

1 个答案:

答案 0 :(得分:0)

尝试使用以下代码:

$client = new \GuzzleHttp\Client();