Curl POST alanları nakledilen değil

0 Cevap php

I $requestDom->saveXml() geçerli XML dönen olduğunu doğruladıktan ettik ama hedef URL'den I ($ _POST) print_r etmiş ve hiçbir şey almaz. Ben burada bir şey eksik? : - \

    $connection = curl_init();
    curl_setopt($connection, CURLOPT_POSTFIELDS, array(
        'xml' => $requestDom->saveXml()
    ));
    curl_setopt($connection, CURLOPT_HEADER, false); //with or without this option, it doesn't work
    curl_setopt($connection, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($connection, CURLOPT_POST, true);
    curl_setopt($connection, CURLOPT_URL, 'http://sample.com');

    $response = curl_exec($connection);

0 Cevap