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 请求并判断请求类型?
基础教程推荐
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 使用 PDO 转义列名 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01