gpt4 book ai didi

rest - 使用 Symfony2 发送 REST 请求

转载 作者:行者123 更新时间:2023-12-01 00:45:05 25 4
gpt4 key购买 nike

有没有可以向外部网页发送REST请求的bundle?我需要 PUT 和 DELETE 以及 PATCH(http 方法)。

最佳答案

您正在寻找这个包: https://github.com/CircleOfNice/CiRestClientBundle

$restClient = $this->container->get('ci.restclient');

$restClient->get('http://www.someUrl.com');
$restClient->post('http://www.someUrl.com', 'somePayload');
$restClient->put('http://www.someUrl.com', 'somePayload');
$restClient->delete('http://www.someUrl.com');
$restClient->patch('http://www.someUrl.com', 'somePayload');

$restClient->head('http://www.someUrl.com');
$restClient->options('http://www.someUrl.com', 'somePayload');
$restClient->trace('http://www.someUrl.com');
$restClient->connect('http://www.someUrl.com');

关于rest - 使用 Symfony2 发送 REST 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29198318/

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