Faker描述
- Faker是一个PHP库,它为您生成假数据
- Faker 需要 PHP >= 5.3.3 PS:当前使用版本为PHP7.4 框架为Hyperf2.2
- github地址 https://github.com/fzaninotto/Faker
- composer下载 composer require fzaninotto/faker
代码使用
composer 安装下来后,需要在文件中引入后使用
// 引入
use Faker;
// 欺诈数据类 使用中文环境
$faker = Faker\Factory::create('zh_CN');
// 随机手机号数据 11位 unique()是修饰符 强制提供者返回唯一值
$telephone = $faker->unique()->phoneNumber;
// 随机中文姓名 例如:王红
$name = $faker->name
// 随机邮箱
$email = $faker->email
// 上面是常用的
更多可以访问 https://packagist.org/packages/fzaninotto/faker 查看必要数据