# Faker
Faker is a PHP library that generates fake data for you. Whether you need to bootstrap your database, create good-looking XML documents, fill-in your persistence to stress test it, or anonymize data taken from a production service, Faker is for you.
Faker is heavily inspired by Perl's [Data::Faker](http://search.cpan.org/~jasonk/Data-Faker-0.07/), and by ruby's [Faker](https://rubygems.org/gems/faker).
Faker requires PHP >= 5.3.3.
[![Monthly Downloads](https://poser.pugx.org/fzaninotto/faker/d/monthly.png)](https://packagist.org/packages/fzaninotto/faker) [![Build Status](https://travis-ci.org/fzaninotto/Faker.svg?branch=master)](https://travis-ci.org/fzaninotto/Faker) [![SensioLabsInsight](https://insight.sensiolabs.com/projects/eceb78a9-38d4-4ad5-8b6b-b52f323e3549/mini.png)](https://insight.sensiolabs.com/projects/eceb78a9-38d4-4ad5-8b6b-b52f323e3549)
# Table of Contents
- [Installation](#installation)
- [Basic Usage](#basic-usage)
- [Formatters](#formatters)
- [Base](#fakerproviderbase)
- [Lorem Ipsum Text](#fakerproviderlorem)
- [Person](#fakerprovideren_usperson)
- [Address](#fakerprovideren_usaddress)
- [Phone Number](#fakerprovideren_usphonenumber)
- [Company](#fakerprovideren_uscompany)
- [Real Text](#fakerprovideren_ustext)
- [Date and Time](#fakerproviderdatetime)
- [Internet](#fakerproviderinternet)
- [User Agent](#fakerprovideruseragent)
- [Payment](#fakerproviderpayment)
- [Color](#fakerprovidercolor)
- [File](#fakerproviderfile)
- [Image](#fakerproviderimage)
- [Uuid](#fakerprovideruuid)
- [Barcode](#fakerproviderbarcode)
- [Miscellaneous](#fakerprovidermiscellaneous)
- [Biased](#fakerproviderbiased)
- [Modifiers](#modifiers)
- [Localization](#localization)
- [Populating Entities Using an ORM or an ODM](#populating-entities-using-an-orm-or-an-odm)
- [Seeding the Generator](#seeding-the-generator)
- [Faker Internals: Understanding Providers](#faker-internals-understanding-providers)
- [Real Life Usage](#real-life-usage)
- [Language specific formatters](#language-specific-formatters)
- [Third-Party Libraries Extending/Based On Faker](#third-party-libraries-extendingbased-on-faker)
- [License](#license)
## Installation
```sh
composer require fzaninotto/faker
```
## Basic Usage
Use `Faker\Factory::create()` to create and initialize a faker generator, which can generate data by accessing properties named after the type of data you want.
```php
<?php
// require the Faker autoloader
require_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 Faker\Generator instance
$faker = Faker\Factory::create();
// 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.
```
Even if this example shows a property access, each call to `$faker->name` yields a different (random) result. This is because Faker uses `__get()` magic, and forwards `Faker\Generator->$property` calls to `Faker\Generator->format($property)`.
```php
<?php
for ($i=0; $i < 10; $i++) {
echo $faker->name, "\n";
}
// Adaline Reichel
// Dr. Santa Prosacco DVM
// Noemy Vandervort V
// Lexi O'Conner
// Gracie Weber
// Roscoe Johns
// Emmett Lebsack
// Keegan Thiel
// Wellington Koelpin II
// Ms. Karley Kiehn V
```
**Tip**: For a quick generation of fake data, you can also use Faker as a command line tool thanks to [faker-cli](https://github.com/bit3/faker-cli).
## Formatters
Each of the generator properties (like `name`, `address`, and `lorem`) are called "formatters". A faker generator has many of them, packaged in "providers". Here is a list of the bundled formatters in the default locale.
### `Faker\Provider\Base`
randomDigit // 7
randomDigitNotNull // 5
randomNumber($nbDigits = NULL) // 79907610
randomFloat($nbMaxDecimals = NULL, $min = 0, $max = NULL) // 48.8932
numberBetween($min = 1000, $max = 9000) // 8567
randomLetter // 'b'
// returns randomly ordered subsequence of a provided array
randomElements($array = array ('a','b','c'), $count = 1) // array('c')
randomElement($array = array ('a','b','c')) // 'b'
shuffle('hello, world') // 'rlo,h eoldlw'
shuffle(array(1, 2, 3)) // array(2, 1, 3)
numerify('Hello ###') // 'Hello 609'
lexify('Hello ???') // 'Hello wgt'
bothify('Hello ##??') // 'Hello 42jz'
asciify('Hello ***') // 'Hello R6+'
regexify('[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}'); // sm0@y8k96a.ej
### `Faker\Provider\Lorem`
word // 'aut'
words($nb = 3, $asText = false) // array('porro', 'sed', 'magni')
sentence($nbWords = 6, $variableNbWords = true) // 'Sit vitae voluptas sint non voluptates.'
sentences($nb = 3, $asText = false) // array('Optio quos qui illo error.', 'Laborum vero a officia id corporis.', 'Saepe provident esse hic eligendi.')
paragraph($nbSentences = 3, $variableNbSentences = true) // 'Ut ab voluptas sed a nam. Sint autem inventore aut officia aut aut blanditiis. Ducimus eos odit amet et est ut eum.'
paragraphs($nb = 3, $asText = false) // array('Quidem ut sunt et quidem est accusamus aut. Fuga est placeat rerum ut. Enim ex eveniet facere sunt.', 'Aut nam et eum architecto fugit repellendus illo. Qui ex esse veritatis.', 'Possimus omnis aut incidunt sunt. Asperiores incidunt iure sequi cum culpa rem. Rerum exercitationem est rem.')
text($maxNbChars = 200) // 'Fuga totam reiciendis qui architecto fugiat nemo. Consequatur recusandae qui cupiditate eos quod.'
### `Faker\Provider\en_US\Person`
title($gender = null|'male'|'female') // 'Ms.'
titleMale // 'Mr.'
titleFemale // 'Ms.'
suffix // 'Jr.'
name($gender = null|'male'|'female') // 'Dr. Zane Stroman'
firstName($gender = null|'male'|'female') // 'Maynard'
firstNameMale // 'Maynard'
firstNameFemale // 'Rachel'
lastName // 'Zulauf'
### `Faker\Provider\en_US\Address`
cityPrefix // 'Lake'
secondaryAddress // 'Suite 961'
state // 'NewMexico'
stateAbbr // 'OH'
citySuffix // 'borough'
streetSuffix // 'Keys'
buildingNumber // '484'
city // 'West Judge'
streetName // 'Keegan Trail'
streetAddress // '439 Karley Loaf Suite 897'
postcode // '17916'
address // '8888 Cummings Vista Apt. 101, Susanbury, NY 95473'
country // 'Falkland Islands (Malvinas)'
latitude($min = -90, $max = 90) // 77.147489
longitude($min = -180, $max = 180) // 86.211205
### `Faker\Provider\en_US\PhoneNumber`
phoneNumber // '201-886-0269 x3767'
tollFreePhoneNumber // '(888) 937-7238'
e164PhoneNumber // '+27113456789'
### `Faker\Provider\en_US\Company`
catchPhrase // 'Monitored regional contingency'
bs // 'e-enable robust architectures'
company
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
ecshop3.6APP/H5移动端/小程序/PC,刚刚花12800买的正版下载渠道,还有操作大全,新的ecshop3.6小程序和移动端、app都必须要操作大全才能完成。拿去二次开发框架,表结构大全里面都有。不知道会不会觉得老版本没有授权的ecshop,网站运行速度和体验感都越来越不好,那是因为交了授权的是在内部邮箱地址下载的,客服很明确的说了,没有授权的ecshop,都是做了手脚的,代码不齐全的。运行久了自然就会出现问题多。如果有疑问我是不是真的交了12800,请留言我截图给大家看
资源推荐
资源详情
资源评论
收起资源包目录
ecshop3.6APP/H5移动端/小程序/PC,刚刚花12800买的正版下载渠道,还有操作大全 (7225个子文件)
a 0B
artisan 1KB
random_compat.phar.pubkey.asc 499B
structure.sql.bak 61KB
symfony_debug.c 7KB
verify_sign_acp.cer 2KB
UpopRsaCert.cer 1KB
encryptpub.cer 1KB
EbppRsaCert.cer 1KB
fckeditor.cfc 9KB
spellchecker.cfm 5KB
CHANGES 7KB
abc.dat.copy 0B
ab.dat.copy 0B
a.dat.copy 0B
ca.crt 1KB
sign2.crt 1KB
intermediate.crt 1KB
sign.crt 1KB
encrypt.crt 1KB
encrypt2.crt 1KB
app.css 151KB
bootstrap.min.css 115KB
app-ea34409380.main.css 99KB
app-57f898f179.main.css 91KB
app-57f898f179.main.css 91KB
animate.css 70KB
style.css 55KB
main.css 40KB
app-41ead03b6d.base.css 29KB
app-41ead03b6d.base.css 29KB
swiper.css 20KB
swiper.min.css 14KB
login.css 11KB
normalize.css 11KB
nv.d3.min.css 9KB
main.css 9KB
anim-in-out.css 9KB
fck_editor.css 8KB
fck_dialog.css 6KB
calendar.css 6KB
fck_internal.css 4KB
ngToast-animations.css 3KB
general.css 3KB
loading-bar.css 3KB
general.css 3KB
general.css 3KB
fck_editorarea.css 3KB
ngToast.css 2KB
style.css 2KB
reset.css 2KB
fck_dialog_common.css 2KB
fck_showtableborders_gecko.css 2KB
browser.css 2KB
general.css 1KB
spellerStyle.css 890B
resources.csv 99B
virtual_goods_list.csv 94B
valid.csv 40B
empty.csv 0B
ipdata.dat 831KB
resources.dat 352B
resources.dat 3B
bar.dat 0B
abc.dat 0B
ab.dat 0B
a.dat 0B
Thumbs.db 41KB
Thumbs.db 10KB
smoke.conf.php.default 2KB
acceptance.conf.php.default 1KB
dashboard.html.dist 7KB
file.html.dist 3KB
TestCaseMethod.tpl.dist 2KB
directory.html.dist 2KB
phpunit.xml.dist 1KB
phpunit.xml.dist 1KB
phpunit.xml.dist 1KB
phpmd.xml.dist 1KB
phpunit.xml.dist 1KB
mocked_class.tpl.dist 1KB
phpunit.xml.dist 961B
file_item.html.dist 885B
phpunit.xml.dist 864B
phpunit.xml.dist 863B
phpunit.xml.dist 852B
directory_item.html.dist 834B
phpunit.xml.dist 808B
phpunit.xml.dist 804B
phpunit.xml.dist 803B
phpunit.xml.dist 801B
proxied_method.tpl.dist 738B
phpunit.xml.dist 704B
phpunit.xml.dist 699B
phpunit.xml.dist 681B
phpunit.xml.dist 679B
phpunit.xml.dist 675B
mocked_method.tpl.dist 666B
phpunit.xml.dist 657B
method_item.html.dist 643B
共 7225 条
- 1
- 2
- 3
- 4
- 5
- 6
- 73
理想的奴隶
- 粉丝: 8
- 资源: 5
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功
- 1
- 2
- 3
前往页