PHP ActiveX
PHP ActiveX
HTTP DELETE with Body
See more HTTP Examples
Demonstrates how to send a DELETE request with a body.Chilkat PHP ActiveX Downloads
<?php
$success = 0;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
$http = new COM("Chilkat.Http");
// Use the HttpStr method (or HttpSb) to send a DELETE request with a body.
$requestBody = '{ \'abc\': 123 }';
$resp = new COM("Chilkat.HttpResponse");
$success = $http->HttpStr('DELETE','https://example.com/something',$requestBody,'utf-8','application/json',$resp);
if ($success == 0) {
print $http->LastErrorText . "\n";
exit;
}
print 'Response status: ' . $resp->StatusCode . "\n";
print 'Response body: ' . "\n";
print $resp->BodyStr . "\n";
?>