gpt4 book ai didi

php - 如何在 Zend_Rest_Client 中使用 POST 发送数据

转载 作者:可可西里 更新时间:2023-11-01 13:18:31 25 4
gpt4 key购买 nike

有下一段代码:

$client = new Zend_Rest_Client('http://test.com/rest');
$client->sendData('data');

如果我通过 GET (echo $client->get()) 发送,它会正常工作

如果通过 POST (echo $client->post()) 我收到下一条消息“未指定方法。”

如何使用 Zend_Rest_Client 发送帖子?

最佳答案

也许这有帮助:

$base_url = 'http://www.example.com';
$endpoint = '/path/to/endpoint';
$data = array(
'param1' => 'value1',
'param2' => 'value2',
'param3' => 'value3'
);
$client = new Zend_Rest_Client($base_url);
$response = $client->restPost($endpoint, $data);
print_r($response);

关于php - 如何在 Zend_Rest_Client 中使用 POST 发送数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4725471/

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