🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# 5、发信-Android 推送 命令字:plg_cmd_send_push_ios | mid| 收件人手机 | | --- | --- | | template| 模板参数| | channel| 渠道(1.公众号 2.小程序)| | cover_file_url| 封面图| | title| 标题| | content| 内容| | time| 时间| | link_type| 链接类型| | link_url| 链接地址| ```   $cmd = PluginConfig::PLG\_CMD\_SEND\_IOS;         $pluginClass = PluginHelper::findPluginClass($pluginUniKey);          $input = [ 'phone'=> $phone, 'template'=> $template, 'channel'=> $channel, 'cover_file_url'=> $cover_file_url, 'title'=> $title, 'content'=> $content, 'time'=> $time, 'link_type'=> $link_type, 'link_url'=> $link_url,         ];         $resp = PluginRpcHelper::call($pluginClass, $cmd, $input); if(PluginRpcHelper::isErrorPluginResp($resp)){ return$this->pluginError($resp);         } ```