ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## Faker创建假数据 使用`\\Poppy\\Faker\\Factory::create('zh_CN')`来创建和初始化生成器, 这里保留之前英文版生成数据的规则 ~~~php <?php // use the factory to create a \Poppy\Faker\Generator instance $faker = \Poppy\Faker\Factory::create('zh_CN'); // generate data by accessing properties echo $faker->name; // 'Lucy Cechtelar'; echo $faker->address; // "426 Jordy Lodge // Cartwrightshire, SC 88120-6700" echo $faker->text; // Dolores sit sint laboriosam dolorem culpa et autem. Beatae nam sunt fugit // et sit et mollitia sed. // Fuga deserunt tempora facere magni omnis. Omnis quia temporibus laudantium // sit minima sint. ~~~