我正在尝试在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);
拜托,我错过了什么?