-
Notifications
You must be signed in to change notification settings - Fork 802
/
Copy pathbcmath.php
248 lines (235 loc) · 8.77 KB
/
bcmath.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
<?php
use JetBrains\PhpStorm\Internal\LanguageLevelTypeAware;
use JetBrains\PhpStorm\Internal\PhpStormStubsElementAvailable;
use JetBrains\PhpStorm\Pure;
/**
* Add two arbitrary precision numbers
* @link https://php.net/manual/en/function.bcadd.php
* @param string $num1 <p>
* The left operand, as a string.
* </p>
* @param string $num2 <p>
* The right operand, as a string.
* </p>
* @param int|null $scale [optional] <p>
* This optional parameter is used to set the number of digits after the
* decimal place in the result. If omitted, it will default to the scale
* set globally with the {@link bcscale()} function, or fallback to 0 if
* this has not been set.
* </p>
* @return string The sum of the two operands, as a string.
*/
#[Pure]
function bcadd(string $num1, string $num2, ?int $scale = 0): string {}
/**
* Subtract one arbitrary precision number from another
* @link https://php.net/manual/en/function.bcsub.php
* @param string $num1 <p>
* The left operand, as a string.
* </p>
* @param string $num2 <p>
* The right operand, as a string.
* </p>
* @param int|null $scale [optional] <p>
* This optional parameter is used to set the number of digits after the
* decimal place in the result. If omitted, it will default to the scale
* set globally with the {@link bcscale()} function, or fallback to 0 if
* this has not been set.
* </p>
* @return string The result of the subtraction, as a string.
*/
#[Pure]
function bcsub(string $num1, string $num2, ?int $scale = 0): string {}
/**
* Multiply two arbitrary precision numbers
* @link https://php.net/manual/en/function.bcmul.php
* @param string $num1 <p>
* The left operand, as a string.
* </p>
* @param string $num2 <p>
* The right operand, as a string.
* </p>
* @param int|null $scale [optional] <p>
* This optional parameter is used to set the number of digits after the
* decimal place in the result. If omitted, it will default to the scale
* set globally with the {@link bcscale()} function, or fallback to 0 if
* this has not been set.
* </p>
* @return string the result as a string.
*/
#[Pure]
function bcmul(string $num1, string $num2, ?int $scale = 0): string {}
/**
* Divide two arbitrary precision numbers
* @link https://php.net/manual/en/function.bcdiv.php
* @param string $num1 <p>
* The dividend, as a string.
* </p>
* @param string $num2 <p>
* The divisor, as a string.
* </p>
* @param int|null $scale [optional] <p>
* This optional parameter is used to set the number of digits after the
* decimal place in the result. If omitted, it will default to the scale
* set globally with the {@link bcscale()} function, or fallback to 0 if
* this has not been set.
* </p>
* @return string|null the result of the division as a string, or <b>NULL</b> if
* <i>divisor</i> is 0.
*/
#[Pure]
#[PhpStormStubsElementAvailable(to: '7.4')]
function bcdiv(string $num1, string $num2, ?int $scale = 0): ?string {}
/**
* Divide two arbitrary precision numbers
* @link https://php.net/manual/en/function.bcdiv.php
* @param string $num1 <p>
* The dividend, as a string.
* </p>
* @param string $num2 <p>
* The divisor, as a string.
* </p>
* @param int|null $scale [optional] <p>
* This optional parameter is used to set the number of digits after the
* decimal place in the result. If omitted, it will default to the scale
* set globally with the {@link bcscale()} function, or fallback to 0 if
* this has not been set.
* </p>
* @return string the result of the division as a string.
* @throws \DivisionByZeroError if <i>divisor</i> is 0. Available since PHP 8.0.
*/
#[Pure]
#[PhpStormStubsElementAvailable('8.0')]
function bcdiv(string $num1, string $num2, ?int $scale = 0): string {}
/**
* Get modulus of an arbitrary precision number
* @link https://php.net/manual/en/function.bcmod.php
* @param string $num1 <p>
* The dividend, as a string. Since PHP 7.2, the divided is no longer truncated to an integer.
* </p>
* @param string $num2 <p>
* The divisor, as a string. Since PHP 7.2, the divisor is no longer truncated to an integer.
* </p>
* @param int|null $scale [optional] <p>
* This optional parameter is used to set the number of digits after the
* decimal place in the result. If omitted, it will default to the scale
* set globally with the {@link bcscale()} function, or fallback to 0 if
* this has not been set. Available since PHP 7.2.
* </p>
* @return string|null the modulus as a string, or <b>NULL</b> if
* <i>divisor</i> is 0.
*/
#[Pure]
#[PhpStormStubsElementAvailable(to: '7.4')]
function bcmod(string $num1, string $num2, ?int $scale = 0): ?string {}
/**
* Get modulus of an arbitrary precision number
* @link https://php.net/manual/en/function.bcmod.php
* @param string $num1 <p>
* The dividend, as a string. Since PHP 7.2, the divided is no longer truncated to an integer.
* </p>
* @param string $num2 <p>
* The divisor, as a string. Since PHP 7.2, the divisor is no longer truncated to an integer.
* </p>
* @param int|null $scale [optional] <p>
* This optional parameter is used to set the number of digits after the
* decimal place in the result. If omitted, it will default to the scale
* set globally with the {@link bcscale()} function, or fallback to 0 if
* this has not been set. Available since PHP 7.2.
* </p>
* @return string the modulus as a string.
* @throws \DivisionByZeroError if <i>divisor</i> is 0. Available since PHP 8.0.
*/
#[Pure]
#[PhpStormStubsElementAvailable('8.0')]
function bcmod(string $num1, string $num2, ?int $scale = 0): string {}
/**
* Raise an arbitrary precision number to another
* @link https://php.net/manual/en/function.bcpow.php
* @param string $num <p>
* The base, as a string.
* </p>
* @param string $exponent <p>
* The exponent, as a string. If the exponent is non-integral, it is truncated.
* The valid range of the exponent is platform specific, but is at least
* -2147483648 to 2147483647.
* </p>
* @param int|null $scale [optional] <p>
* This optional parameter is used to set the number of digits after the
* decimal place in the result. If omitted, it will default to the scale
* set globally with the {@link bcscale()} function, or fallback to 0 if
* this has not been set.
* </p>
* @return string the result as a string.
*/
#[Pure]
function bcpow(string $num, string $exponent, ?int $scale = 0): string {}
/**
* Get the square root of an arbitrary precision number
* @link https://php.net/manual/en/function.bcsqrt.php
* @param string $num <p>
* The operand, as a string.
* </p>
* @param int|null $scale [optional]
* @return string|null the square root as a string, or <b>NULL</b> if
* <i>operand</i> is negative.
*/
#[Pure]
#[LanguageLevelTypeAware(["8.0" => "string"], default: "?string")]
function bcsqrt(string $num, ?int $scale) {}
/**
* Set default scale parameter for all bc math functions
* @link https://php.net/manual/en/function.bcscale.php
* @param int $scale
* @return int|bool
*/
#[LanguageLevelTypeAware(['7.3' => 'int'], default: 'bool')]
function bcscale(
#[PhpStormStubsElementAvailable(from: '5.3', to: '7.2')] int $scale,
#[PhpStormStubsElementAvailable(from: '7.3')] #[LanguageLevelTypeAware(['8.0' => 'int|null'], default: 'int')] $scale = null
) {}
/**
* Compare two arbitrary precision numbers
* @link https://php.net/manual/en/function.bccomp.php
* @param string $num1 <p>
* The left operand, as a string.
* </p>
* @param string $num2 <p>
* The right operand, as a string.
* </p>
* @param int|null $scale [optional] <p>
* The optional <i>scale</i> parameter is used to set the
* number of digits after the decimal place which will be used in the
* comparison.
* </p>
* @return int 0 if the two operands are equal, 1 if the
* <i>left_operand</i> is larger than the
* <i>right_operand</i>, -1 otherwise.
*/
#[Pure]
function bccomp(string $num1, string $num2, ?int $scale = 0): int {}
/**
* Raise an arbitrary precision number to another, reduced by a specified modulus
* @link https://php.net/manual/en/function.bcpowmod.php
* @param string $num <p>
* The base, as an integral string (i.e. the scale has to be zero).
* </p>
* @param string $exponent <p>
* The exponent, as an non-negative, integral string (i.e. the scale has to be
* zero).
* </p>
* @param string $modulus <p>
* The modulus, as an integral string (i.e. the scale has to be zero).
* </p>
* @param int|null $scale [optional] <p>
* This optional parameter is used to set the number of digits after the
* decimal place in the result. If omitted, it will default to the scale
* set globally with the {@link bcscale()} function, or fallback to 0 if
* this has not been set.
* </p>
* @return string|null the result as a string, or <b>NULL</b> if <i>modulus</i>
* is 0 or <i>exponent</i> is negative.
*/
#[Pure]
#[LanguageLevelTypeAware(["8.0" => "string"], default: "?string")]
function bcpowmod(string $num, string $exponent, string $modulus, ?int $scale = 0) {}