1 添加自定义组件文件 /basic/components/MyComponent.php

<?php
namespace app\components;
use yii\base\Component;

class MyComponent extends Component
{
    public $name;
    public function welcome()
    {
        echo $this->name." Hello..Welcome to MyComponent";
    }
}

2 /basic/config/web.php components添加配置

'myComponent' => [
            'class' => 'app\components\MyComponent',
            'name' => '小明',
        ],

3 /basic/controllers/TestController.php index 添加测试

Yii::$app->myComponent->welcome();

http://www.basic.com/test/index

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-01-25
  • 2021-08-11
  • 2021-10-19
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-08
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案