-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNumberSpeaker.php
executable file
·293 lines (256 loc) · 7.41 KB
/
NumberSpeaker.php
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
<?php
/**
* Description of NumberSpeaker
*/
class System_View_Helper_NumberSpeaker {
public $valueInWords;
public $kwotaSlownie;
public $kwota;
public $pln;
/**
* Tablica opisów wartości jednostek.
*/
private $Units = array
(
"Zero", "Jeden", "Dwa", "Trzy", "Cztery", "Pięć", "Sześć",
"Siedem", "Osiem", "Dziewięć", "Dziesięć", "Jedenaście",
"Dwanaście", "Trzynaście", "Czternaście", "Piętnaście",
"Szesnaście", "Siedemnaście", "Osiemnaście", "Dziewiętnaście"
);
/**
* Tablica opisów dziesiątek
*/
private $Tens = array
(
"Dwadzieścia", "Trzydzieści", "Czterdzieści", "Pięćdziesiąt",
"Sześćdziesiąt", "Siedemdziesiąt", "Osiemdziesiąt",
"Dziewięćdziesiąt"
);
/**
* Tablica obisów setek
*/
private $Hundreds = array
(
"", "Sto", "Dwieście", "Trzysta", "Czterysta", "Pięćset",
"Sześćset", "Siedemset", "Osiemset", "Dziewięćset"
);
/**
* Dwuwymiarowa tablica tysięcy,milionów,miliarów
*/
private $OtherUnits = array
(
array( "Tysiąc", "Tysiące", "Tysięcy" ),
array( "Milion", "Miliony", "Milionów" ),
array( "Miliard", "Miliardy", "Miliardów" )
);
/**
* Constructor
* @param $pln
*/
public function numberSpeaker($pln=null) {
try {
if(is_null($pln)){
throw new Exception('Brak kwoty!');
}
$this->pln = sprintf('%03f', $pln);
//polski format zapisu kwoty
$this->kwota = number_format($pln, 2, ',', ' ');
$kwota = $this->pln;
$dkwota = 0;
$dkwota = $kwota;
$this->kwotaSlownie = $this->procKwotaSlownie($dkwota);
} catch (Exception $e) {
//Wyjątek błędu aplikacji
$this->kwotaSlownie = "Bład, ".$e->getMessage();
}
return $this;
}
/**
* SmallValueToWords
*
* @param Integer $n
* @return String
* Konwersja małych liczb
*/
private function SmallValueToWords($n) {
(int)$n = $n;
if ($n == 0)
{
return null;
}
$this->valueInWords .= " ";
// Konwertuj setki.
$temp = $n / 100;
if ($temp > 0)
{
$this->valueInWords .= $this->Hundreds[$temp];
(int)$n -= (int)$temp * 100;
}
// Konwertuj dziesiątki i jedności.
if ($n > 0)
{
if (strlen($this->valueInWords)> 0)
{
$this->valueInWords .= " ";
}
if ($n < 20)
{
// Liczby poniżej 20 przekonwertuj na podstawie
// tablicy jedności.
$this->valueInWords .= $this->Units[$n];
}
else
{
// Większe liczby przekonwertuj łącząc nazwy
// krotności dziesiątek z nazwami jedności.
$this->valueInWords .= $this->Tens[($n / 10) - 2];
(int) $lastDigit = (int)$n % 10;
if ((int)$lastDigit > 0)
{
$this->valueInWords .= " ";
$this->valueInWords .= $this->Units[(int)$lastDigit];
}
}
}
return $this->valueInWords;
}
/**
* StringBuilder
* @param String $value
* @return String
*
* Tworzy string znaków o pojemności 16 znaków.
*/
private function stringBuilder($value="") {
$ilosc_znakow = strlen($value);
$ile_sp = (16 - $ilosc_znakow);
$str = "";
for($i = 1; $i<=$ile_sp; $i++){
$str .= (string)" ";
}
return $value.$str;
}
/**
* ToWordsString
* @param String $value
* @return String
*/
private function ToWordsString($value) {
if (!$value)
{
// Zero.
return $this->Units[0];
}
$this->valueInWords = $this->stringBuilder($value);
$smallValue = $this->ToWords($this->valueInWords, $value, 0);
if ($smallValue > 0)
{
if (strlen($this->valueInWords) > 0)
{
$this->valueInWords." ";
}
$this->valueInWords = $this->SmallValueToWords($smallValue);
}
return (string)$this->valueInWords;
}
/**
* ToWords
* @param String $valueInWords
* @param String $n
* @param Integer $level
* @return Integer
*/
private function ToWords($valueInWords, $n=0, $level=0)
{
$this->valueInWords = '';
(int) $smallValue = 0;
$divisor = pow(1000,$level+1);
if ($divisor <= $n)
{
// Jeśli liczbę da się podzielić przez najbliższą
// potęgę 1000, kontynuuj rekurencję.
(int)$n = $this->ToWords($valueInWords, $n, $level+1);
(int)$smallValue = (int)($n / $divisor);
if (strlen($this->valueInWords) > 0)
{
$this->valueInWords .= " ";
}
if ($smallValue > 1)
{
$this->valueInWords = $this->SmallValueToWords($smallValue);
$this->valueInWords .= " ";
}
$bigUnitIndex = $this->getBigUnitIndex($smallValue);
$this->valueInWords .= $this->OtherUnits[$level][$bigUnitIndex];
}
return ($n - $smallValue * $divisor);
}
/**
* GetBigUnitIndex
* @param Integer $n
* @return Integer
*
* Obliczenia dla dużych liczb i odmiana prawidłowa ich wartości
*/
private function getBigUnitIndex($n)
{
$lastDigit = ($n % 10);
if(($n >= 10 && ($n <= 20 || $lastDigit == 0)) || ($lastDigit > 4))
{
return 2;
}elseif($lastDigit ==1 && $n > 20){
return 2;
}
return ($lastDigit == 1) ? 0 : 1;
}
/**
* liczbaZlotych
* @param Integer $kwota
* @return Integer
*/
private function liczbaZlotych($kwota)
{
// $nkwota = number_format($kwota, 0, ',', '');
$nkwota = (int)$kwota;
return $nkwota;
}
/**
* liczbaGroszy
* @param Integer $grosze
* @return Integer
*/
private function liczbaGroszy($grosze)
{
//Tworzę format zmiennych aby uzyskać liczbę w formie tekstowej
$szlote = number_format($grosze, 2, '.', '');
//Odcinam grosze
$bgzlote = substr($szlote,0,strlen($szlote)-3);
$dzlote = $bgzlote;
//Od kowty z groszami odejmuję kwotę bez groszy.
$groszy = number_format($grosze*100 - $dzlote*100, 0, '', '');
return $groszy;
}
/**
* procKwotaSlownie
* @param Double $kwota
* @return String
*/
private function procKwotaSlownie($kwota)
{
//Generalna funkcja przetworzenia zmiennej
if ($kwota < 0)
{
$kwota = $kwota * -1;
}
$czlon1 = $this->ToWordsString($this->liczbaZlotych($kwota));
$czlon2 = $this->ToWordsString($this->liczbaGroszy($kwota));
$strKwotaSl = "";
$strKwotaSl = $czlon1. " zł ". $czlon2." gr.";
return $strKwotaSl;
}
public function __toString()
{
return $this->kwotaSlownie;
}
}
?>