Zttp 是 Adam Wathan 為了讓程式碼更富表現力以及簡化常見用例而寫的一個 Guzzle 的封裝。
這是使用 Zttp 去 Post 一個自定義頭部內容請求的一個例子:
$response = Zttp::withHeaders(['Fancy' => 'Pants'])->post($url, [
'foo' => 'bar',
'baz' => 'qux',
]);
$response->json();
如果用一個與 Guzzle 差不多的東西寫這個請求的話,大概這樣寫:
$client = new Client();
$response = $client->request('POST', $url, [
'headers' => [
'Fancy' => 'Pants',
],
'form_params' => [
'foo' => 'bar',
'baz' => 'qux',
]
]);
json_decode($response->getBody());
相較之下,Zttp 簡化了程式碼的寫法,還能很簡單地返回 JSON 格式的內容。
下面是 使用 Zttp 的幾個例子:
帶引數的 Post 請求
$response = Zttp::asFormParams()->post($url, [
'foo' => 'bar',
'baz' => 'qux',
]);
Patch 請求
$response = Zttp::patch($this->url('/patch'), [
'foo' => 'bar',
'baz' => 'qux',
]);
Put 請求
$response = Zttp::put($this->url('/put'), [
'foo' => 'bar',
'baz' => 'qux',
]);
Delete 請求
$response = Zttp::delete($this->url('/delete'), [
'foo' => 'bar',
'baz' => 'qux',
]);
新增請求頭
$response = Zttp::accept('banana/sandwich')->post($url);
防止重定向
$response = Zttp::withoutRedirecting()->get($url);
在 Zttp 的測試檔案 中還有幾個簡單的示例供你檢視。 目前這個包還在開發中,有興趣的童鞋建議直接上 GitHub 吧!
今天的 Laravel 新聞播報就到這裡:tada: 謝謝捧場~ 點選訂閱 Laravel 資訊 或者使用這個 外掛 可以讓你第一時間檢視新內容呢!