Я пытаюсь получить значения из строки strDataList, но не могу отобразить ее, показать общее число может помочь одна
$xml_data = '<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetTransactionsLog xmlns="http://tempuri.org/">
<FromDate>02-04-2019</FromDate>
<ToDate>04-04-2019</ToDate>
<SerialNumber>BRM9190960298</SerialNumber>
<UserName>test</UserName>
<UserPassword>test</UserPassword>
<strDataList>string</strDataList>
</GetTransactionsLog>
</soap:Body>
</soap:Envelope>';
$URL = "http://192.168.1.92/iclock/WebAPIService.asmx?op=GetTransactionsLog";
$ch = curl_init($URL);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: text/xml'));
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "$xml_data");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($ch);
curl_close($ch);
print_r($output);