ar_EG
1 year ago
ar_JO
1 year ago
ar_SA
1 year ago
at_AT
1 year ago
bg_BG
1 year ago
bn_BD
1 year ago
cs_CZ
1 year ago
da_DK
1 year ago
de_AT
1 year ago
de_CH
1 year ago
de_DE
1 year ago
el_CY
1 year ago
el_GR
1 year ago
en_AU
1 year ago
en_CA
1 year ago
en_GB
1 year ago
en_HK
1 year ago
en_IN
1 year ago
en_NG
1 year ago
en_NZ
1 year ago
en_PH
1 year ago
en_SG
1 year ago
en_UG
1 year ago
en_US
1 year ago
en_ZA
1 year ago
es_AR
1 year ago
es_ES
1 year ago
es_PE
1 year ago
es_VE
1 year ago
et_EE
1 year ago
fa_IR
1 year ago
fi_FI
1 year ago
fr_BE
1 year ago
fr_CA
1 year ago
fr_CH
1 year ago
fr_FR
1 year ago
he_IL
1 year ago
hr_HR
1 year ago
hu_HU
1 year ago
hy_AM
1 year ago
id_ID
1 year ago
is_IS
1 year ago
it_CH
1 year ago
it_IT
1 year ago
ja_JP
1 year ago
ka_GE
1 year ago
kk_KZ
1 year ago
ko_KR
1 year ago
lt_LT
1 year ago
lv_LV
1 year ago
me_ME
1 year ago
mn_MN
1 year ago
ms_MY
1 year ago
nb_NO
1 year ago
ne_NP
1 year ago
nl_BE
1 year ago
nl_NL
1 year ago
pl_PL
1 year ago
pt_BR
1 year ago
pt_PT
1 year ago
ro_MD
1 year ago
ro_RO
1 year ago
ru_RU
1 year ago
sk_SK
1 year ago
sl_SI
1 year ago
sr_Cyrl_RS
1 year ago
sr_Latn_RS
1 year ago
sr_RS
1 year ago
sv_SE
1 year ago
th_TH
1 year ago
tr_TR
1 year ago
uk_UA
1 year ago
vi_VN
1 year ago
zh_CN
1 year ago
zh_TW
1 year ago
Address.php
1 year ago
Barcode.php
1 year ago
Base.php
1 year ago
Biased.php
1 year ago
Color.php
1 year ago
Company.php
1 year ago
DateTime.php
1 year ago
File.php
1 year ago
HtmlLorem.php
1 year ago
Image.php
1 year ago
Internet.php
1 year ago
Lorem.php
1 year ago
Medical.php
1 year ago
Miscellaneous.php
1 year ago
Payment.php
1 year ago
Person.php
1 year ago
PhoneNumber.php
1 year ago
Text.php
1 year ago
UserAgent.php
1 year ago
Uuid.php
1 year ago
Barcode.php
114 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @license MIT |
| 4 | * |
| 5 | * Modified by impress-org on 07-August-2024 using Strauss. |
| 6 | * @see https://github.com/BrianHenryIE/strauss |
| 7 | */ |
| 8 | |
| 9 | namespace Give\Vendors\Faker\Provider; |
| 10 | |
| 11 | use Give\Vendors\Faker\Calculator\Ean; |
| 12 | use Give\Vendors\Faker\Calculator\Isbn; |
| 13 | |
| 14 | /** |
| 15 | * @see http://en.wikipedia.org/wiki/EAN-13 |
| 16 | * @see http://en.wikipedia.org/wiki/ISBN |
| 17 | */ |
| 18 | class Barcode extends Base |
| 19 | { |
| 20 | private function ean($length = 13) |
| 21 | { |
| 22 | $code = static::numerify(str_repeat('#', $length - 1)); |
| 23 | |
| 24 | return $code . Ean::checksum($code); |
| 25 | } |
| 26 | |
| 27 | /** |
| 28 | * Utility function for computing EAN checksums |
| 29 | * |
| 30 | * @deprecated Use \Faker\Calculator\Ean::checksum() instead |
| 31 | * |
| 32 | * @param string $input |
| 33 | * |
| 34 | * @return int |
| 35 | */ |
| 36 | protected static function eanChecksum($input) |
| 37 | { |
| 38 | return Ean::checksum($input); |
| 39 | } |
| 40 | |
| 41 | /** |
| 42 | * ISBN-10 check digit |
| 43 | * |
| 44 | * @see http://en.wikipedia.org/wiki/International_Standard_Book_Number#ISBN-10_check_digits |
| 45 | * @deprecated Use \Faker\Calculator\Isbn::checksum() instead |
| 46 | * |
| 47 | * @param string $input ISBN without check-digit |
| 48 | * |
| 49 | * @throws \LengthException When wrong input length passed |
| 50 | * |
| 51 | * @return string |
| 52 | */ |
| 53 | protected static function isbnChecksum($input) |
| 54 | { |
| 55 | return Isbn::checksum($input); |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * Get a random EAN13 barcode. |
| 60 | * |
| 61 | * @return string |
| 62 | * |
| 63 | * @example '4006381333931' |
| 64 | */ |
| 65 | public function ean13() |
| 66 | { |
| 67 | return $this->ean(13); |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * Get a random EAN8 barcode. |
| 72 | * |
| 73 | * @return string |
| 74 | * |
| 75 | * @example '73513537' |
| 76 | */ |
| 77 | public function ean8() |
| 78 | { |
| 79 | return $this->ean(8); |
| 80 | } |
| 81 | |
| 82 | /** |
| 83 | * Get a random ISBN-10 code |
| 84 | * |
| 85 | * @see http://en.wikipedia.org/wiki/International_Standard_Book_Number |
| 86 | * |
| 87 | * @return string |
| 88 | * |
| 89 | * @example '4881416324' |
| 90 | */ |
| 91 | public function isbn10() |
| 92 | { |
| 93 | $code = static::numerify(str_repeat('#', 9)); |
| 94 | |
| 95 | return $code . Isbn::checksum($code); |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * Get a random ISBN-13 code |
| 100 | * |
| 101 | * @see http://en.wikipedia.org/wiki/International_Standard_Book_Number |
| 102 | * |
| 103 | * @return string |
| 104 | * |
| 105 | * @example '9790404436093' |
| 106 | */ |
| 107 | public function isbn13() |
| 108 | { |
| 109 | $code = '97' . self::numberBetween(8, 9) . static::numerify(str_repeat('#', 9)); |
| 110 | |
| 111 | return $code . Ean::checksum($code); |
| 112 | } |
| 113 | } |
| 114 |