首页 > PHP资讯 > PHP培训技术 > 生成假数据的PHP库 Faker

生成假数据的PHP库 Faker

PHP培训技术

Faker 是一个为你生成假数据的PHP库。当你需要填充一个测试数据库,或为你的web应用生成测试数据时,它能派上用场。

示例代码:

<?php// require the Faker autoloaderrequire_once '/path/to/Faker/src/autoload.php';// alternatively, use another PSR-0 compliant autoloader (like the Symfony2 ClassLoader for instance)// use the factory to create a FakerGenerator instance$faker = FakerFactory::create();// generate data by accessing propertiesecho $faker->name;  // 'Lucy Cechtelar';echo $faker->address;  // "426 Jordy Lodge  // Cartwrightshire, SC 88120-6700"echo $faker->text;
本文由欣才IT学院整理发布,未经许可,禁止转载。