Class' Guzzle \ Http \ Client'未找到

时间:2016-01-22 07:55:34

标签: php guzzle

我正在尝试在sitepoint http://www.sitepoint.com/guzzle-php-http-client/ 上关注本教程,我在这里逐步安装了http://docs.guzzlephp.org/en/latest/overview.html#installation并且我试图运行第一个简单示例,但是它给出了我的问题。我还检查了我的PHP版本要求(5.5):我的是5.6,那就好了。

我正在使用MAC,请参阅下面的代码。

error_reporting(E_ALL);
ini_set('display_errors', 1);

require_once 'vendor/autoload.php';

use Guzzle\Http\Client;
use Guzzle\Http\EntityBody;
use Guzzle\Http\Message\Request;
use Guzzle\Http\Message\Response;

$client = new Client("https://qrng.anu.edu.au");

$request = $client->get('/API/jsonI.php?length=10&type=uint8');

$response = $request->send();

echo $body = $response->getBody(true);

拜托,我错过了什么?

1 个答案:

答案 0 :(得分:8)

是,

use GuzzleHttp\Client;

您的以下教程似乎基于Guzzle 3.7并且您安装了Guzzle 6

Learn more.