Ben cURL kullanarak olmadan bir HTTP POST göndermek PHP5'ta çalışır aşağıdaki kodu var. PHP 4.3.0 ve üzerinde çalışmak için bu istiyorum:
$opts = array('http' =>
array(
'method' => 'POST',
'header' => "Content-type: application/x-www-form-urlencoded\r\n" . "Content-Type: application/json\r\n",
'content' => $query
)
);
$context = stream_context_create($opts);
$result = file_get_contents($url, false, $context);
HTTP bağlamı sadece PHP5 desteklenir. PHP 4.3.0 ile bu işi yapmak için yine de var mı - PHP5 veya cURL yüklü değilse, ben bir geri dönüş yöntemi gerekir.