Sample code for 30+ languages & platforms
PHP Extension

HTTP DELETE with Body

See more HTTP Examples

Demonstrates how to send a DELETE request with a body.

Chilkat PHP Extension Downloads

PHP Extension
<?php

include("chilkat.php");

$success = false;

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

$http = new CkHttp();

// Use the HttpStr method (or HttpSb) to send a DELETE request with a body.
$requestBody = '{ \'abc\': 123 }';
$resp = new CkHttpResponse();
$success = $http->HttpStr('DELETE','https://example.com/something',$requestBody,'utf-8','application/json',$resp);
if ($success == false) {
    print $http->lastErrorText() . "\n";
    exit;
}

print 'Response status: ' . $resp->get_StatusCode() . "\n";
print 'Response body: ' . "\n";
print $resp->bodyStr() . "\n";

?>