2015-06-06 19:29:28 2524次浏览 2条回答 2 悬赏 40 金钱

假设有这么一个发送手机短信的组件需求
第一步先建立一个组件
common/components/ShortMsgService.php

<?php
class ShortMsgService {
    public $accessKey;
    public function send($phone,$message){
        echo $this->accessKey , $phone , $message;
    }
}

第二步配置加载组件
common/config/main.php

'ShortMsgService' => [
    'class' => 'common\components\ShortMsgService',
    'accessKey' => 'accessKey Here',
],

第三步在控制器中尝试使用组件

$sms = Yii::$app->ShortMsgService;
$sms->send('18588888888','Are you ok');

舰长的每个回答都可以给分的功能正在研发,大家敬请言无不尽,感谢哈

最佳答案

您需要登录后才可以回答。登录 | 立即注册
trylife
总监

trylife Beijing

注册时间:2015-03-26
最后登录:2020-12-07
在线时长:51小时55分
  • 粉丝39
  • 金钱1626
  • 威望40
  • 积分2536

热门问题