SoFunction
Updated on 2025-04-04

PHP submits XML, obtains XML in POST, parses XML detailed explanations and examples

PHP submits XML in POST, obtains XML, and finally parses XML

Submit XML in POST

// Do a POST
$data="<?xml version='1.0' encoding='UTF-8'?>
<TypeRsp>
<CONNECT_ID>1</CONNECT_ID>
<MO_MESSAGE_ID>2</MO_MESSAGE_ID>
</TypeRsp>";

//$data = array('name' => 'Dennis', 'surname' => 'Pallett');

// create a new curl resource
$ch = curl_init();
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL,"http://localhost/handle_form.php");
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
// grab URL, and print
curl_exec($ch);

Get POST to XML and parse

handle_form.php


$file_in = file_get_contents("php://input"); //Receive post data
$xml = simplexml_load_string($file_in);//Convert post data to simplexml object
foreach($xml-&gt;children() as $child)  //Transfer all node data{

echo $child-&gt;getName() . ": " . $child . "&lt;br /&gt;"; //Print node name and node value
//if($child->getName()=="from") //Pick up the node to be operated//{
//echo "i says ". ": get you!" . "<br />"; //Operate node data//}
}

exit;

Thank you for reading, I hope it can help you. Thank you for your support for this site!