當前位置: 首頁>>代碼示例>>PHP>>正文


PHP XML::build方法代碼示例

本文整理匯總了PHP中XML::build方法的典型用法代碼示例。如果您正苦於以下問題:PHP XML::build方法的具體用法?PHP XML::build怎麽用?PHP XML::build使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在XML的用法示例。


在下文中一共展示了XML::build方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: encryptMsg

 /**
  * 將公眾平台回複用戶的消息加密打包.
  * <ol>
  *    <li>對要發送的消息進行AES-CBC加密</li>
  *    <li>生成安全簽名</li>
  *    <li>將消息密文和安全簽名打包成xml格式</li>
  * </ol>
  *
  * @param string  $xml          公眾平台待回複用戶的消息,xml格式的字符串
  * @param integer $timestamp    時間戳,可以自己生成,也可以用URL參數的timestamp
  * @param string  $nonce        隨機串,可以自己生成,也可以用URL參數的nonce
  *
  * @return string 加密後的可以直接回複用戶的密文,包括msg_signature, timestamp,
  *                nonce, encrypt的xml格式的字符串
  */
 public function encryptMsg($xml, $nonce = null, $timestamp = null)
 {
     $encrypt = $this->encrypt($xml, Wechat::getOption('appId'));
     $nonce || ($nonce = uniqid());
     $timestamp || ($timestamp = time());
     //生成安全簽名
     $signature = $this->getSHA1(Wechat::getOption('token'), $timestamp, $nonce, $encrypt);
     $response = array('Encrypt' => $encrypt, 'MsgSignature' => $signature, 'TimeStamp' => $timestamp, 'Nonce' => $nonce);
     //生成響應xml
     return XML::build($response);
 }
開發者ID:xutongtong,項目名稱:wechat,代碼行數:26,代碼來源:Crypt.php

示例2: buildReply

 /**
  * Build reply XML.
  *
  * @param string           $to
  * @param string           $from
  * @param MessageInterface $message
  *
  * @return string
  */
 protected function buildReply($to, $from, $message)
 {
     $base = ['ToUserName' => $to, 'FromUserName' => $from, 'CreateTime' => time(), 'MsgType' => $message->getType()];
     return XML::build(array_merge($base, $this->transformer->transform($message)));
 }
開發者ID:hexing-w,項目名稱:wechat,代碼行數:14,代碼來源:Guard.php

示例3: xml

 public function xml($elements = '', $version = '1.0', $encoding = 'utf-8')
 {
     return XML::build($elements, $version, $encoding);
 }
開發者ID:Allopa,項目名稱:ZN-Framework-Starter,代碼行數:4,代碼來源:Build.php

示例4: encryptMsg

 /**
  * 將公眾平台回複用戶的消息加密打包.
  * <ol>
  *    <li>對要發送的消息進行AES-CBC加密</li>
  *    <li>生成安全簽名</li>
  *    <li>將消息密文和安全簽名打包成xml格式</li>
  * </ol>
  *
  * @param string $xml 公眾平台待回複用戶的消息,xml格式的字符串
  * @param string $nonce 隨機串,可以自己生成,也可以用URL參數的nonce
  * @param int $timestamp 時間戳,可以自己生成,也可以用URL參數的timestamp
  *
  * @return string 加密後的可以直接回複用戶的密文,包括msg_signature, timestamp,
  *                nonce, encrypt的xml格式的字符串
  */
 public function encryptMsg($xml, $nonce = null, $timestamp = null)
 {
     $encrypt = $this->encrypt($xml, $this->appId);
     !is_null($nonce) || ($nonce = substr($this->appId, 0, 10));
     !is_null($timestamp) || ($timestamp = time());
     //生成安全簽名
     $signature = $this->getSHA1($this->token, $timestamp, $nonce, $encrypt);
     $response = array('Encrypt' => $encrypt, 'MsgSignature' => $signature, 'TimeStamp' => $timestamp, 'Nonce' => $nonce);
     //生成響應xml
     return XML::build($response);
 }
開發者ID:keepeye,項目名稱:mpsdk,代碼行數:26,代碼來源:Crypt.php


注:本文中的XML::build方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。