2

file_get_contents 方法可以执行 GET 或 POST 请求。我想知道是否可以使用此方法执行 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);
4

1 回答 1

3

$result = file_get_contents( ' http://example.com/submit.php ', false, stream_context_create(array( 'http' => array( 'method' => 'DELETE' ) )) );

于 2014-06-02T06:21:54.880 回答