PluginProbe ʕ •ᴥ•ʔ
Kubio AI Page Builder / trunk
Kubio AI Page Builder vtrunk
2.9.0 2.8.6 2.8.5 2.8.4 2.8.3 2.8.2 2.8.1 trunk 1.0.0 1.0.1 1.1.0 1.2.0 1.2.1 1.2.2 1.2.3 1.3.0 1.3.1 1.3.2 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.7.0 1.7.1 1.7.2 1.7.3 1.8.0 1.8.1 1.8.2 1.9.0 2.0.0 2.1.1 2.1.2 2.1.3 2.2.0 2.2.3 2.2.4 2.2.5 2.3.0 2.3.1 2.3.3 2.3.4 2.4.0 2.4.1 2.4.2 2.4.3 2.4.5 2.5.0 2.5.1 2.5.2 2.5.3 2.6.0 2.6.1 2.6.2 2.6.3 2.6.5 2.6.6 2.6.7 2.7.0 2.7.1 2.7.2 2.7.3 2.8.0
kubio / vendor / fzaninotto / faker / src / Faker / Provider / Barcode.php
kubio / vendor / fzaninotto / faker / src / Faker / Provider Last commit date
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 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
115 lines
1 <?php
2
3 namespace Faker\Provider;
4
5 /**
6 * @see http://en.wikipedia.org/wiki/EAN-13
7 * @see http://en.wikipedia.org/wiki/ISBN
8 */
9 class Barcode extends Base
10 {
11 private function ean($length = 13)
12 {
13 $code = static::numerify(str_repeat('#', $length - 1));
14
15 return $code . static::eanChecksum($code);
16 }
17
18 /**
19 * Utility function for computing EAN checksums
20 *
21 * @param string $input
22 *
23 * @return integer
24 */
25 protected static function eanChecksum($input)
26 {
27 $sequence = (strlen($input) + 1) === 8 ? array(3, 1) : array(1, 3);
28 $sums = 0;
29 foreach (str_split($input) as $n => $digit) {
30 $sums += $digit * $sequence[$n % 2];
31 }
32 return (10 - $sums % 10) % 10;
33 }
34
35 /**
36 * ISBN-10 check digit
37 * @link http://en.wikipedia.org/wiki/International_Standard_Book_Number#ISBN-10_check_digits
38 *
39 * @param string $input ISBN without check-digit
40 * @throws \LengthException When wrong input length passed
41 *
42 * @return integer Check digit
43 */
44 protected static function isbnChecksum($input)
45 {
46 // We're calculating check digit for ISBN-10
47 // so, the length of the input should be 9
48 $length = 9;
49
50 if (strlen($input) !== $length) {
51 throw new \LengthException(sprintf('Input length should be equal to %d', $length));
52 }
53
54 $digits = str_split($input);
55 array_walk(
56 $digits,
57 function (&$digit, $position) {
58 $digit = (10 - $position) * $digit;
59 }
60 );
61 $result = (11 - array_sum($digits) % 11) % 11;
62
63 // 10 is replaced by X
64 return ($result < 10)?$result:'X';
65 }
66
67 /**
68 * Get a random EAN13 barcode.
69 * @return string
70 * @example '4006381333931'
71 */
72 public function ean13()
73 {
74 return $this->ean(13);
75 }
76
77 /**
78 * Get a random EAN8 barcode.
79 * @return string
80 * @example '73513537'
81 */
82 public function ean8()
83 {
84 return $this->ean(8);
85 }
86
87 /**
88 * Get a random ISBN-10 code
89 * @link http://en.wikipedia.org/wiki/International_Standard_Book_Number
90 *
91 * @return string
92 * @example '4881416324'
93 */
94 public function isbn10()
95 {
96 $code = static::numerify(str_repeat('#', 9));
97
98 return $code . static::isbnChecksum($code);
99 }
100
101 /**
102 * Get a random ISBN-13 code
103 * @link http://en.wikipedia.org/wiki/International_Standard_Book_Number
104 *
105 * @return string
106 * @example '9790404436093'
107 */
108 public function isbn13()
109 {
110 $code = '97' . static::numberBetween(8, 9) . static::numerify(str_repeat('#', 9));
111
112 return $code . static::eanChecksum($code);
113 }
114 }
115