这样定义组件有没有问题 [ 2.0 版本 ]
假设有这么一个发送手机短信的组件需求
第一步先建立一个组件
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 Beijing
注册时间:2015-03-26
最后登录:2020-12-07
在线时长:51小时55分
最后登录:2020-12-07
在线时长:51小时55分
- 粉丝39
- 金钱1626
- 威望40
- 积分2536