gpt4 book ai didi

php - 找不到类 'GuzzleHttp\Client'

转载 作者:可可西里 更新时间:2023-11-01 12:34:10 25 4
gpt4 key购买 nike

我同时使用 Guzzle和 Codeigniter 3.0 首次亮相。我也承认我是第一次使用 php 命名空间。

我正在尝试根据文档中提供的示例使用 Guzzle 发出一个非常简单的获取请求。 (Guzzle 文档对 codeigniter 只字不提)。

Guzzle 文件位于 application/class/guzzle

这是我非常简单的 Controller

public function indey () {

$data = array();
$data['main_content'] = "hiview";
$data['title'] = "Data Analyzer - Welcome";
$data['xas'] = $this->guzzler();
$this->load->view('template', $data);
}

private function guzzler() {
$client = new GuzzleHttp\Client;
$response = $client->get('http://guzzlephp.org');
return $response;
}

这是我的简单看法

    <div class="row">
<div class="col-xs-12">
<h1>Hi</h1>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<h1><?php var_dump($xas); ?></h1>
</div>
</div>

这是我遇到的错误

遇到 PHP 错误严重性:错误消息:找不到类“GuzzleHttp\Client”文件名:controllers/hello.php行号:22回溯:

最佳答案

application/config/config.php

$config['composer_autoload'] = FCPATH.'vendor/autoload.php';

对我来说很好用

关于php - 找不到类 'GuzzleHttp\Client',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29376103/

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