如何在yii2中播种数据库?

前端之家收集整理的这篇文章主要介绍了如何在yii2中播种数据库?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是Yii框架的新手.
我想为我的数据库播种,就像可以使用Faker在Laravel框架中完成一样.
我试过这个 http://www.yiiframework.com/forum/index.php/topic/59655-how-to-seed-yii2-database/,但它没有提供太多细节.
如果有人可以帮我解决细节上的步骤,我将非常感激.
在控制台命令控制器中创建控制台命令并使用Faker为我工作的数据库播种.
以下是我在命令文件夹下创建的SeedController.PHP文件
// commands/SeedController.PHP
namespace app\commands;

use yii\console\Controller;
use app\models\Users;
use app\models\Profile;

class SeedController extends Controller
{
    public function actionIndex()
    {
        $faker = \Faker\Factory::create();

        $user = new Users();
        $profile = new Profile();
        for ( $i = 1; $i <= 20; $i++ )
        {
            $user->setIsNewRecord(true);
            $user->user_id = null;

            $user->username = $faker->username;
            $user->password = '123456';
            if ( $user->save() )
            {
                $profile->setIsNewRecord(true);
                $profile->user_id = null;

                $profile->user_id = $user->user_id;
                $profile->email = $faker->email;
                $profile->first_name = $faker->firstName;
                $profile->last_name = $faker->lastName;
                $profile->save();
            }
        }

    }
}

并使用yii seed命令来运行控制器.

原文链接:https://www.f2er.com/php/134514.html

猜你在找的PHP相关文章