博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用Faker库生成模拟数据
阅读量:6555 次
发布时间:2019-06-24

本文共 551 字,大约阅读时间需要 1 分钟。

一、相关文档

该库在laravel框架中默认已经存在,无需手动进行安装。使用参考文档:

二、简单示例

$faker->userName,//生成用户名 'password' => bcrypt(123456), 'gender' => rand(1, 3), 'mobile' => $faker->phoneNumber,//生成手机号 'email' => $faker->email,//生成邮箱 'role_id' => rand(1, 6), 'created_at' => date('Y-m-d H:i:s'), 'status' => rand(0, 1), ]; $data[] = $line; } DB::table('manager')->insert($data); }}

 

转载于:https://www.cnblogs.com/jxl1996/p/10269138.html

你可能感兴趣的文章
HTML Input Text cursor position control
查看>>
阿里云应用安装 小记
查看>>
The Google File System(前五章,翻译的略乱)
查看>>
RUP 迭代开发计划的两种方法
查看>>
PHP中static关键字
查看>>
python处理xml实例
查看>>
从《一生所爱》到《世间始终你好》
查看>>
UIStackView相关
查看>>
数据库
查看>>
20145240问卷调查
查看>>
[linux] uptime 命令中关于平均负载的解释
查看>>
Algs4-1.4.25扔两个鸡蛋
查看>>
Algs4-2.4.22调优先队列的整数组大小
查看>>
设计模式之建造者
查看>>
模块化的JavaScript开发的优势在哪里
查看>>
上海某软件公司电话面试分享
查看>>
TCP 和 UDP 协议发送数据包的大小 (转载)
查看>>
用Alamofire进行网络请求的一段代码解析(一)
查看>>
elasticsearch的percolator操作
查看>>
windows 定时任务:schtasks,定时关闭网易云音乐
查看>>