gpt4 book ai didi

php - 使用 file_get_contents 删除请求

转载 作者:行者123 更新时间:2023-12-04 04:39:21 25 4
gpt4 key购买 nike

file_get_contents 方法可以执行 GET 或 POST 请求。我想知道是否可以使用此方法执行 DELETE 请求。我像下面这样尝试,但它似乎没有执行 DELETE 请求。我也没有收到任何错误或异常。这可能吗?

$postdata = http_build_query($param);
$opts = array('http' =>
array(
'method' => 'DELETE',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => $postdata
)
);
$context = stream_context_create($opts);
$result = file_get_contents($url, false, $context);

最佳答案

$result = file_get_contents(
' http://example.com/submit.php ',
假的,
流上下文创建(数组(
'http' => 数组(
'方法' => '删除'
)
))
);

关于php - 使用 file_get_contents 删除请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19158178/

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