emayk/faker

There is no license information available for the latest version (dev-master) of this package.

Extend Localization Indonesian base Faker

dev-master 2014-01-07 09:09 UTC

This package is not auto-updated.

Last update: 2024-04-23 00:32:43 UTC


README

###Apa ini ? Generate Data Faker ini berbasis pada fzaninotto/faker: 1.4.*@dev

###Instalasi

  • Tambahkan pada composer.json anda "emayk/faker": "dev-master"
  • composer install atau compose update
Penggunaan
$faker = new \Emayk\Faker\Factory();
$bank_account = array();

for ($i=0; $i <= 15; $i++) {
		$account_name = $faker->unique()->bankaccountname;
		$account = array('name' => $account_name,
			 'info' => "Info {$account_name}"
		);
		$bank_account[] = array_merge($account,$faker->fillattributes);
 }

Extend fzaninotto/faker

$bankaccountname // echo

untuk $bankaccountname maximal 15

Lainnya :