以下是我获得的机票预订的SOAP响应。如何在PHP中解析这个响应。我需要获取标签内的值。例如标签'KLRCnt'中的值为12。
`<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<SubmitXmlOnSessionResponse
xmlns="http://webservices.galileo.com">
<SubmitXmlOnSessionResult>
<PNRBFManagement_21
xmlns="">
<PNRBFRetrieve>
<Control>
<KLRCnt>12</KLRCnt>
</Control>
<PNRBFRetrieve>
</PNRBFManagement_21>
</SubmitXmlOnSessionResult>
</SubmitXmlOnSessionResponse>
</soapenv:Body>
</soapenv:Envelope>`