gpt4 book ai didi

zend-framework - 使用 Zend_http_Client 获取响应主体

转载 作者:行者123 更新时间:2023-12-01 11:08:02 24 4
gpt4 key购买 nike

我使用以下代码成功调用了 REST API

$client = new Zend_Http_Client();
$client->setMethod(Zend_Http_Client::POST);
$client->setUri('http://www.example.com/api/type/');
$client->setParameterPost(array(
'useremail' => '******@*****.***',
'apikey' => 'secretkey',
'description' => 'TEST WEB API',
'amount' => '5000.00'
));

但是我想获得执行后返回的header value-(201)Response Body

我该如何处理?

最佳答案

我假设您实际上是通过以下方式执行请求:

$response = $client->request();

那时你所需要的只是在 $response 对象中,

//Dump headers
print_r($response->headers);

//Dump body
echo $response->getBody();

请参阅 Zend_Http_Response 文档:

http://framework.zend.com/apidoc/1.10/

更多可用的方法。

关于zend-framework - 使用 Zend_http_Client 获取响应主体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3350494/

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