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