谁一开始就是大神?

这样义组件有没有问题[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');

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

基本就是这么个意思吧,yii结构很灵活的
我感觉这样写没问题。

赞(0) 打赏
未经允许不得转载:菜鸟之家 » 这样义组件有没有问题[2.0]

评论 抢沙发

登录

找回密码

注册