Sample code for 30+ languages & platforms
PHP Extension

Inspect HTTP Request Header

Demonstrates the LastHeader property.

Chilkat PHP Extension Downloads

PHP Extension
<?php

include("chilkat.php");

$success = false;

$http = new CkHttp();

$url = 'https://chilkatsoft.com/echo_request_body.asp';
$json = '{\'greeting\':\'Hello World\'}';

// Send a POST with the JSON in the HTTP request body.
$resp = new CkHttpResponse();
$success = $http->HttpStr('POST',$url,$json,'utf-8','application/json',$resp);
if ($success == false) {
    print $http->lastErrorText() . "\n";
    exit;
}

// Examine the HTTP request header we just sent.
print $http->lastHeader() . "\n";

// Output:

// POST /echo_request_body.asp HTTP/1.1
// Host: chilkatsoft.com
// Accept: */*
// Accept-Encoding: gzip
// Content-Type: application/json
// Content-Length: 26

?>