XMLParse.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. namespace app\lib\wx_encode;
  3. use app\lib\wx_encode\ErrorCode;
  4. /**
  5. * XMLParse class
  6. *
  7. * 提供提取消息格式中的密文及生成回复消息格式的接口.
  8. */
  9. class XMLParse
  10. {
  11. /**
  12. * 提取出xml数据包中的加密消息
  13. * @param string $xmltext 待提取的xml字符串
  14. * @return array
  15. */
  16. public function extract($xmltext)
  17. {
  18. libxml_disable_entity_loader(true);
  19. try {
  20. $xml = new \DOMDocument();
  21. $xml->loadXML($xmltext);
  22. $array_e = $xml->getElementsByTagName('Encrypt');
  23. $array_a = $xml->getElementsByTagName('AppId');
  24. $encrypt = $array_e->item(0)->nodeValue;
  25. $tousername = $array_a->item(0)->nodeValue;
  26. return array(0, $encrypt, $tousername);
  27. } catch (\Exception $e) {
  28. //print $e . "\n";
  29. return array(ErrorCode::$ParseXmlError, null, null);
  30. }
  31. }
  32. /**
  33. * 生成xml消息
  34. * @param string $encrypt 加密后的消息密文
  35. * @param string $signature 安全签名
  36. * @param string $timestamp 时间戳
  37. * @param string $nonce 随机字符串
  38. * @return string
  39. */
  40. public function generate($encrypt, $signature, $timestamp, $nonce)
  41. {
  42. $format = "<xml>
  43. <Encrypt><![CDATA[%s]]></Encrypt>
  44. <MsgSignature><![CDATA[%s]]></MsgSignature>
  45. <TimeStamp>%s</TimeStamp>
  46. <Nonce><![CDATA[%s]]></Nonce>
  47. </xml>";
  48. return sprintf($format, $encrypt, $signature, $timestamp, $nonce);
  49. }
  50. }
  51. ?>