You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1001 B
34 lines
1001 B
<?php
|
|
/*----------------------------------------------------------------------
|
|
* 项目名称: CloudAdmin
|
|
* +----------------------------------------------------------------------
|
|
* 版权所有: 2014~2020 安徽云掌开发团队
|
|
* +----------------------------------------------------------------------
|
|
* 官方网站: [ http://www.yaoyz.com、http://www.ahyunzhang.com ]
|
|
* +----------------------------------------------------------------------
|
|
* Date: 2018/11/15 9:47
|
|
* +----------------------------------------------------------------------
|
|
* Des: 短信插件
|
|
+----------------------------------------------------------------------*/
|
|
|
|
|
|
namespace app\index\controller;
|
|
|
|
use think\Controller;
|
|
|
|
class Sms extends Controller
|
|
{
|
|
|
|
/**
|
|
* 默认操作数据表
|
|
* @var string
|
|
*/
|
|
public $table = 'sms';
|
|
|
|
public function index()
|
|
{
|
|
$_result = \app\api\controller\Sms::sendNotify('13965108697', ['{url}' => 'http://www.baidu.com'], 23);
|
|
dump($_result);
|
|
}
|
|
|
|
}
|