Commit 41f8de30 by feixiang

微信小程序page生成

parent 93c15eb1
<?php
/**
* Created by PhpStorm.
* User: Administrator
* Date: 2018/9/4
* Time: 10:46
*/
namespace Hdll\Services\Notice\Common;
class WxMiniNotice
{
/**
* 微信小程序page生成
*
* @param string $page
* @param array $param
* @return string
*/
public function generatePage(string $page, array $param)
{
$param = http_build_query($param);
return $page.$param;
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment