How to start a GET/POST/PUT/DELETE request and judge request type in PHP?(如何在 PHP 中启动 GET/POST/PUT/DELETE 请求并判断请求类型?)
问题描述
我从来没有看到 PUT/DELETE
请求是如何发送的.
I never see how is PUT/DELETE
request sent.
如何在 PHP 中实现?
How to do it in PHP?
我知道如何使用 curl 发送 GET/POST 请求:
I know how to send a GET/POST request with curl:
$ch = curl_init();
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookieFile);
curl_setopt($ch, CURLOPT_COOKIEFILE,$cookieFile);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_POST, 0);
curl_setopt($ch, CURLOPT_TIMEOUT, 4);
但是如何做PUT
/DELETE
请求?
推荐答案
对于 DELETE
使用 curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
对于 PUT
使用 curl_setopt($ch, CURLOPT_PUT, true);
For DELETE
use curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
For PUT
use curl_setopt($ch, CURLOPT_PUT, true);
不依赖于安装 cURL 的替代方法是使用 file_get_contents
和 自定义 HTTP 流上下文.
An alternative that doesn't rely on cURL being installed would be to use file_get_contents
with a custom HTTP stream context.
$result = file_get_contents(
'http://example.com/submit.php',
false,
stream_context_create(array(
'http' => array(
'method' => 'DELETE'
)
))
);
查看这两篇关于使用 PHP 进行 REST 的文章
Check out these two articles on doing REST with PHP
- http://www.gen-x-design.com/archives/create-a-rest-api-with-php/
- http://www.gen-x-design.com/archives/making-restful-requests-in-php/
这篇关于如何在 PHP 中启动 GET/POST/PUT/DELETE 请求并判断请求类型?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 PHP 中启动 GET/POST/PUT/DELETE 请求并判断请求类型?
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- PHP - if 语句中的倒序 2021-01-01