php获取PUT、DELETE方法请求的参数
php
获取
PUT
DELETE
方法
请求
参数
编程技术
发布日期
2022-12-19
更新日期
2022-12-19
阅读次数 223
文章字数 141
使用 php::/input 获取原始的body表单数据,然后手动解析即可。
<?php
$_PUT = array();
if ('put' == $_SERVER['REQUEST_METHOD']) {
parse_str(file_get_contents('php://input'), $_PUT);
var_dump($_PUT);
}
文章作者: 朱丰华
文章链接: https://smart.52dixiaowo.com/blog/post-275.html
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。
php
获取
PUT
DELETE
方法
请求
参数
发表评论
相关推荐