Files
xinhu/webmain/task/api/wxgzhAction.php
2022-08-14 16:47:40 +08:00

22 lines
425 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* 微信公众号接口
* 来源信呼开发团队www.rockoa.com
* 禁止抄袭盗版
*/
class wxgzhClassAction extends apiAction{
public function getsignAction()
{
$bo = m('wxgzh:signjssdk');
$appid = $bo->readwxset();
if(isempt($appid)){
$arr['appId'] = '';
}else{
$url = $this->getvals('url');
$arr = $bo->getsignsdk($url);
}
$this->showreturn($arr);
}
}