POST sonra görüntüleyerek üzerinden XML verilerini alma

1 Cevap php

Ben bu sergiyi zorluklar yaşıyorum. Ben XML ilanıyla görebilir ve ben bunun uzunluğunu görmek ama ben POST verileri görüntülemek ya da erişmek için nasıl anlamaya olamaz

CONTENT-TYPE: text/xml<br />
CONTENT-LENGTH: 640<br />

ayrı Ben

curl -k -H 'content-type: text/xml' -d 'XML_DATA_HERE' https://ip/page.php

1 Cevap

Denemek

$xml = file_get_contents('php://input');

http://docs.php.net/manual/en/wrappers.php.php diyor ki:

php://input allows you to read raw POST data. It is a less memory intensive alternative to $HTTP_RAW_POST_DATA and does not need any special php.ini directives. php://input is not available with enctype="multipart/form-data".