当前位置: 首页>>代码示例>>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;未经允许,请勿转载。