为foreach()提供的参数无效yii-app-basic

时间:2015-10-19 12:24:04

标签: php yii2 yii2-basic-app

我有一个模块 - >用户。

->modules
    ->users
        ->controllers
        ->models
        ->views
        ->Users.php

我在'用户'模块的'config'文件夹中创建了一个'config.php'。

->modules
    ->users
        ->config
            ->config.php
        ->controllers
            -> List of Controllers
        ->models
            -> List of models
        ->views
            -> List of Views
        ->Users.php

并且,我在Users.php的init()方法中给出了config.php的目录路径,如

模块/用户/ Users.php

<?php

namespace app\modules\users;

class Users extends \yii\base\Module
{
    public $controllerNamespace = 'app\modules\users\controllers';
    public $commonModel = 'app\modules\users\models\Users';

    public function init()
    {
        parent::init();
        \Yii::configure($this,require(__DIR__.'/config/config.php'));
    }
}

但是,它给出了错误,如

  

PHP警告 - yii \ base \ ErrorException
  “提供的参数无效   的foreach()”。

截图

enter image description here enter image description here enter image description here enter image description here

我正在从Yii2.0 Guide引用以在init()方法中包含一个路径。

请帮我纠正这个问题。

感谢。

3 个答案:

答案 0 :(得分:2)

问题来自配置文件。配置文件必须返回一个数组。确保配置文件如下:

<?php

$config = [
    'name1' => 'value1',
    'name2' => [/* something here */],
];

return $config;

答案 1 :(得分:1)

从我所看到的,你将PHP代码传递给配置文件,而不是传入配置数组

而不是......

\Yii::configure($this, require(__DIR__.'/config/config.php'));

尝试这样做......

$config = require(__DIR__.'/config/config.php');
\Yii::configure($this, $config);

在您的config.php文件中,您应该返回一个数组,如果您使用的是基本应用程序配置文件并添加到该文件,那么它应该像这样设置

答案 2 :(得分:1)

编辑文件模型并删除代码:

/**
 * @inheritdoc
 * @return DriverSearch the active query used by this AR class.
 */
public static function find()
{
    return new DriverSearch(get_called_class());
}