Address.php
3.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?php
namespace Faker\Provider\fa_IR;
class Address extends \Faker\Provider\Address
{
protected static $cityPrefix = ['استان'];
protected static $streetPrefix = ['خیابان'];
protected static $buildingNamePrefix = ['ساختمان'];
protected static $buildingNumberPrefix = ['پلاک', 'قطعه'];
protected static $postcodePrefix = ['کد پستی'];
protected static $cityName = [
'آذربایجان شرقی', 'آذربایجان غربی', 'اردبیل', 'اصفهان', 'البرز', 'ایلام', 'بوشهر',
'تهران', 'خراسان جنوبی', 'خراسان رضوی', 'خراسان شمالی', 'خوزستان', 'زنجان', 'سمنان',
'سیستان و بلوچستان', 'فارس', 'قزوین', 'قم', 'لرستان', 'مازندران', 'مرکزی', 'هرمزگان',
'همدان', 'چهارمحال و بختیاری', 'کردستان', 'کرمان', 'کرمانشاه', 'کهگیلویه و بویراحمد',
'گلستان', 'گیلان', 'یزد',
];
protected static $cityFormats = [
'{{cityName}}',
'{{cityPrefix}} {{cityName}}',
];
protected static $streetNameFormats = [
'{{streetPrefix}} {{lastName}}',
];
protected static $streetAddressFormats = [
'{{streetName}} {{building}}',
];
protected static $addressFormats = [
'{{city}} {{streetAddress}} {{postcodePrefix}} {{postcode}}',
'{{city}} {{streetAddress}}',
];
protected static $buildingFormat = [
'{{buildingNamePrefix}} {{firstName}} {{buildingNumberPrefix}} {{buildingNumber}}',
'{{buildingNamePrefix}} {{firstName}}',
];
protected static $postcode = ['##########'];
protected static $country = ['ایران'];
/**
* @example 'استان'
*/
public static function cityPrefix()
{
return static::randomElement(static::$cityPrefix);
}
/**
* @example 'زنجان'
*/
public static function cityName()
{
return static::randomElement(static::$cityName);
}
/**
* @example 'خیابان'
*/
public static function streetPrefix()
{
return static::randomElement(static::$streetPrefix);
}
/**
* @example 'ساختمان'
*/
public static function buildingNamePrefix()
{
return static::randomElement(static::$buildingNamePrefix);
}
/**
* @example 'پلاک'
*/
public static function buildingNumberPrefix()
{
return static::randomElement(static::$buildingNumberPrefix);
}
/**
* @example 'ساختمان آفتاب پلاک 24'
*/
public function building()
{
$format = static::randomElement(static::$buildingFormat);
return $this->generator->parse($format);
}
/**
* @example 'کد پستی'
*/
public static function postcodePrefix()
{
return static::randomElement(static::$postcodePrefix);
}
}