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 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462
|
/*
+----------------------------------------------------------------------+
| Copyright (c) The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| https://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Jim Winstead <jimw@php.net> |
| Stig Sæther Bakken <ssb@php.net> |
| Zeev Suraski <zeev@php.net> |
| PHP 4.0 patches by Thies C. Arntzen <thies@thieso.net> |
+----------------------------------------------------------------------+
*/
#include "php.h"
#include "php_math.h"
#include "zend_bitset.h"
#include "zend_enum.h"
#include "zend_exceptions.h"
#include "zend_multiply.h"
#include "zend_portability.h"
#include <float.h>
#include <math.h>
#include <stdlib.h>
#include "basic_functions.h"
PHPAPI zend_class_entry *rounding_mode_ce;
/* {{{ php_intpow10
Returns pow(10.0, (double)power), uses fast lookup table for exact powers */
static inline double php_intpow10(int power) {
/* Not in lookup table */
if (power < 0 || power > 22) {
return pow(10.0, (double)power);
}
static const double powers[] = {
1e0, 1e1, 1e2, 1e3, 1e4, 1e5, 1e6, 1e7, 1e8, 1e9, 1e10, 1e11,
1e12, 1e13, 1e14, 1e15, 1e16, 1e17, 1e18, 1e19, 1e20, 1e21, 1e22};
return powers[power];
}
/* }}} */
static zend_always_inline double php_round_get_basic_edge_case(double integral, double exponent, int places)
{
return (places > 0)
? fabs((integral + copysign(0.5, integral)) / exponent)
: fabs((integral + copysign(0.5, integral)) * exponent);
}
static zend_always_inline double php_round_get_zero_edge_case(double integral, double exponent, int places)
{
return (places > 0)
? fabs((integral) / exponent)
: fabs((integral) * exponent);
}
/* {{{ php_round_helper
Actually performs the rounding of a value to integer in a certain mode */
static inline double php_round_helper(double integral, double value, double exponent, int places, int mode) {
double value_abs = fabs(value);
double edge_case;
switch (mode) {
case PHP_ROUND_HALF_UP:
edge_case = php_round_get_basic_edge_case(integral, exponent, places);
if (value_abs >= edge_case) {
/* We must increase the magnitude of the integral part
* (rounding up / towards infinity). copysign(1.0, integral)
* will either result in 1.0 or -1.0 depending on the sign
* of the input, thus increasing the magnitude, but without
* generating branches in the assembly.
*
* This pattern is equally used for all the other modes.
*/
return integral + copysign(1.0, integral);
}
return integral;
case PHP_ROUND_HALF_DOWN:
edge_case = php_round_get_basic_edge_case(integral, exponent, places);
if (value_abs > edge_case) {
return integral + copysign(1.0, integral);
}
return integral;
case PHP_ROUND_CEILING:
edge_case = php_round_get_zero_edge_case(integral, exponent, places);
if (value > 0.0 && value_abs > edge_case) {
return integral + 1.0;
}
return integral;
case PHP_ROUND_FLOOR:
edge_case = php_round_get_zero_edge_case(integral, exponent, places);
if (value < 0.0 && value_abs > edge_case) {
return integral - 1.0;
}
return integral;
case PHP_ROUND_TOWARD_ZERO:
return integral;
case PHP_ROUND_AWAY_FROM_ZERO:
edge_case = php_round_get_zero_edge_case(integral, exponent, places);
if (value_abs > edge_case) {
return integral + copysign(1.0, integral);
}
return integral;
case PHP_ROUND_HALF_EVEN:
edge_case = php_round_get_basic_edge_case(integral, exponent, places);
if (value_abs > edge_case) {
return integral + copysign(1.0, integral);
} else if (UNEXPECTED(value_abs == edge_case)) {
bool even = !fmod(integral, 2.0);
/* If the integral part is not even we can make it even
* by adding one in the direction of the existing sign.
*/
if (!even) {
return integral + copysign(1.0, integral);
}
}
return integral;
case PHP_ROUND_HALF_ODD:
edge_case = php_round_get_basic_edge_case(integral, exponent, places);
if (value_abs > edge_case) {
return integral + copysign(1.0, integral);
} else if (UNEXPECTED(value_abs == edge_case)) {
bool even = !fmod(integral, 2.0);
if (even) {
return integral + copysign(1.0, integral);
}
}
return integral;
EMPTY_SWITCH_DEFAULT_CASE();
}
// FIXME: GCC bug, branch is considered reachable.
ZEND_UNREACHABLE();
}
/* }}} */
/* {{{ _php_math_round */
/*
* Rounds a number to a certain number of decimal places in a certain rounding
* mode. For the specifics of the algorithm, see http://wiki.php.net/rfc/rounding
*/
PHPAPI double _php_math_round(double value, int places, int mode) {
double exponent, tmp_value, tmp_value2;
if (!zend_finite(value) || value == 0.0) {
return value;
}
places = places < INT_MIN+1 ? INT_MIN+1 : places;
exponent = php_intpow10(abs(places));
/**
* When extracting the integer part, the result may be incorrect as a decimal
* number due to floating point errors.
* e.g.
* 0.285 * 10000000000 => 2849999999.9999995
* floor(0.285 * 10000000000) => 2849999999
*
* Add 1 to the absolute value of the value adjusted by floor or ceil, use the
* exponent to return it to its original precision, and compare it with value.
* If it is equal to value, it is assumed that the absolute value is 1 smaller
* due to error and will be corrected.
* e.g.
* 0.285 * 10000000000 => 2849999999.9999995
* floor(0.285 * 10000000000) => 2849999999 (tmp_value)
* tmp_value2 = 2849999999 + 1 => 2850000000
* 2850000000 / 10000000000 == 0.285 => true
* tmp_value = tmp_value2
*/
if (value >= 0.0) {
tmp_value = floor(places > 0 ? value * exponent : value / exponent);
tmp_value2 = tmp_value + 1.0;
} else {
tmp_value = ceil(places > 0 ? value * exponent : value / exponent);
tmp_value2 = tmp_value - 1.0;
}
if ((places > 0 ? tmp_value2 / exponent : tmp_value2 * exponent) == value) {
tmp_value = tmp_value2;
}
/* This value is beyond our precision, so rounding it is pointless */
if (fabs(tmp_value) >= 1e16) {
return value;
}
/* round the temp value */
tmp_value = php_round_helper(tmp_value, value, exponent, places, mode);
/* see if it makes sense to use simple division to round the value */
if (abs(places) < 23) {
if (places > 0) {
tmp_value = tmp_value / exponent;
} else {
tmp_value = tmp_value * exponent;
}
} else {
/* Simple division can't be used since that will cause wrong results.
Instead, the number is converted to a string and back again using
strtod(). strtod() will return the nearest possible FP value for
that string. */
/* 40 Bytes should be more than enough for this format string. The
float won't be larger than 1e15 anyway. But just in case, use
snprintf() and make sure the buffer is zero-terminated */
char buf[40];
snprintf(buf, 39, "%15fe%d", tmp_value, -places);
buf[39] = '\0';
tmp_value = zend_strtod(buf, NULL);
/* couldn't convert to string and back */
if (!zend_finite(tmp_value) || zend_isnan(tmp_value)) {
tmp_value = value;
}
}
return tmp_value;
}
/* }}} */
/* {{{ Return the absolute value of the number */
PHP_FUNCTION(abs)
{
zval *value;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_NUMBER(value)
ZEND_PARSE_PARAMETERS_END();
switch (Z_TYPE_P(value)) {
case IS_LONG:
if (UNEXPECTED(Z_LVAL_P(value) == ZEND_LONG_MIN)) {
RETURN_DOUBLE(-(double)ZEND_LONG_MIN);
} else {
RETURN_LONG(Z_LVAL_P(value) < 0 ? -Z_LVAL_P(value) : Z_LVAL_P(value));
}
case IS_DOUBLE:
RETURN_DOUBLE(fabs(Z_DVAL_P(value)));
EMPTY_SWITCH_DEFAULT_CASE();
}
}
/* }}} */
/* {{{ Returns the next highest integer value of the number */
PHP_FUNCTION(ceil)
{
zval *value;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_NUMBER(value)
ZEND_PARSE_PARAMETERS_END();
switch (Z_TYPE_P(value)) {
case IS_LONG:
RETURN_DOUBLE(zval_get_double(value));
case IS_DOUBLE:
RETURN_DOUBLE(ceil(Z_DVAL_P(value)));
EMPTY_SWITCH_DEFAULT_CASE();
}
}
/* }}} */
/* {{{ Returns the next lowest integer value from the number */
PHP_FUNCTION(floor)
{
zval *value;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_NUMBER(value)
ZEND_PARSE_PARAMETERS_END();
switch (Z_TYPE_P(value)) {
case IS_LONG:
RETURN_DOUBLE(zval_get_double(value));
case IS_DOUBLE:
RETURN_DOUBLE(floor(Z_DVAL_P(value)));
EMPTY_SWITCH_DEFAULT_CASE();
}
}
/* }}} */
PHPAPI int php_math_round_mode_from_enum(zend_object *mode)
{
zval *case_name = zend_enum_fetch_case_name(mode);
zend_string *mode_name = Z_STR_P(case_name);
switch (ZSTR_VAL(mode_name)[0] + ZSTR_VAL(mode_name)[4]) {
case 'H' + 'A':
return PHP_ROUND_HALF_UP;
case 'H' + 'T':
return PHP_ROUND_HALF_DOWN;
case 'H' + 'E':
return PHP_ROUND_HALF_EVEN;
case 'H' + 'O':
return PHP_ROUND_HALF_ODD;
case 'T' + 'r':
return PHP_ROUND_TOWARD_ZERO;
case 'A' + 'F':
return PHP_ROUND_AWAY_FROM_ZERO;
case 'N' + 't':
return PHP_ROUND_FLOOR;
case 'P' + 't':
return PHP_ROUND_CEILING;
EMPTY_SWITCH_DEFAULT_CASE();
}
}
/* {{{ Returns the number rounded to specified precision */
PHP_FUNCTION(round)
{
zval *value;
int places = 0;
zend_long precision = 0;
zend_long mode = PHP_ROUND_HALF_UP;
zend_object *mode_object = NULL;
ZEND_PARSE_PARAMETERS_START(1, 3)
Z_PARAM_NUMBER(value)
Z_PARAM_OPTIONAL
Z_PARAM_LONG(precision)
Z_PARAM_OBJ_OF_CLASS_OR_LONG(mode_object, rounding_mode_ce, mode)
ZEND_PARSE_PARAMETERS_END();
if (ZEND_NUM_ARGS() >= 2) {
if (precision >= 0) {
places = ZEND_LONG_INT_OVFL(precision) ? INT_MAX : (int)precision;
} else {
places = ZEND_LONG_INT_UDFL(precision) ? INT_MIN : (int)precision;
}
}
if (mode_object != NULL) {
mode = php_math_round_mode_from_enum(mode_object);
}
switch (mode) {
case PHP_ROUND_HALF_UP:
case PHP_ROUND_HALF_DOWN:
case PHP_ROUND_HALF_EVEN:
case PHP_ROUND_HALF_ODD:
case PHP_ROUND_AWAY_FROM_ZERO:
case PHP_ROUND_TOWARD_ZERO:
case PHP_ROUND_CEILING:
case PHP_ROUND_FLOOR:
break;
default:
zend_argument_value_error(3, "must be a valid rounding mode (RoundingMode::*)");
RETURN_THROWS();
}
switch (Z_TYPE_P(value)) {
case IS_LONG:
/* Simple case - long that doesn't need to be rounded. */
if (places >= 0) {
RETURN_DOUBLE(zval_get_double(value));
}
ZEND_FALLTHROUGH;
case IS_DOUBLE:
RETURN_DOUBLE(_php_math_round(zval_get_double(value), (int)places, (int)mode));
EMPTY_SWITCH_DEFAULT_CASE();
}
}
/* }}} */
/* {{{ Returns the sine of the number in radians */
PHP_FUNCTION(sin)
{
double num;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_DOUBLE(num)
ZEND_PARSE_PARAMETERS_END();
RETURN_DOUBLE(sin(num));
}
/* }}} */
/* {{{ Returns the cosine of the number in radians */
PHP_FUNCTION(cos)
{
double num;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_DOUBLE(num)
ZEND_PARSE_PARAMETERS_END();
RETURN_DOUBLE(cos(num));
}
/* }}} */
/* {{{ Returns the tangent of the number in radians */
PHP_FUNCTION(tan)
{
double num;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_DOUBLE(num)
ZEND_PARSE_PARAMETERS_END();
RETURN_DOUBLE(tan(num));
}
/* }}} */
/* {{{ Returns the arc sine of the number in radians */
PHP_FUNCTION(asin)
{
double num;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_DOUBLE(num)
ZEND_PARSE_PARAMETERS_END();
RETURN_DOUBLE(asin(num));
}
/* }}} */
/* {{{ Return the arc cosine of the number in radians */
PHP_FUNCTION(acos)
{
double num;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_DOUBLE(num)
ZEND_PARSE_PARAMETERS_END();
RETURN_DOUBLE(acos(num));
}
/* }}} */
/* {{{ Returns the arc tangent of the number in radians */
PHP_FUNCTION(atan)
{
double num;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_DOUBLE(num)
ZEND_PARSE_PARAMETERS_END();
RETURN_DOUBLE(atan(num));
}
/* }}} */
/* {{{ Returns the arc tangent of y/x, with the resulting quadrant determined by the signs of y and x */
PHP_FUNCTION(atan2)
{
double num1, num2;
ZEND_PARSE_PARAMETERS_START(2, 2)
Z_PARAM_DOUBLE(num1)
Z_PARAM_DOUBLE(num2)
ZEND_PARSE_PARAMETERS_END();
RETURN_DOUBLE(atan2(num1, num2));
}
/* }}} */
/* {{{ Returns the hyperbolic sine of the number, defined as (exp(number) - exp(-number))/2 */
PHP_FUNCTION(sinh)
{
double num;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_DOUBLE(num)
ZEND_PARSE_PARAMETERS_END();
RETURN_DOUBLE(sinh(num));
}
/* }}} */
/* {{{ Returns the hyperbolic cosine of the number, defined as (exp(number) + exp(-number))/2 */
PHP_FUNCTION(cosh)
{
double num;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_DOUBLE(num)
ZEND_PARSE_PARAMETERS_END();
RETURN_DOUBLE(cosh(num));
}
/* }}} */
/* {{{ Returns the hyperbolic tangent of the number, defined as sinh(number)/cosh(number) */
PHP_FUNCTION(tanh)
{
double num;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_DOUBLE(num)
ZEND_PARSE_PARAMETERS_END();
RETURN_DOUBLE(tanh(num));
}
/* }}} */
/* {{{ Returns the inverse hyperbolic sine of the number, i.e. the value whose hyperbolic sine is number */
PHP_FUNCTION(asinh)
{
double num;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_DOUBLE(num)
ZEND_PARSE_PARAMETERS_END();
RETURN_DOUBLE(asinh(num));
}
/* }}} */
/* {{{ Returns the inverse hyperbolic cosine of the number, i.e. the value whose hyperbolic cosine is number */
PHP_FUNCTION(acosh)
{
double num;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_DOUBLE(num)
ZEND_PARSE_PARAMETERS_END();
RETURN_DOUBLE(acosh(num));
}
/* }}} */
/* {{{ Returns the inverse hyperbolic tangent of the number, i.e. the value whose hyperbolic tangent is number */
PHP_FUNCTION(atanh)
{
double num;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_DOUBLE(num)
ZEND_PARSE_PARAMETERS_END();
RETURN_DOUBLE(atanh(num));
}
/* }}} */
/* {{{ Returns an approximation of pi */
PHP_FUNCTION(pi)
{
ZEND_PARSE_PARAMETERS_NONE();
RETURN_DOUBLE(M_PI);
}
/* }}} */
/* {{{ Returns whether argument is finite */
PHP_FUNCTION(is_finite)
{
double dval;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_DOUBLE(dval)
ZEND_PARSE_PARAMETERS_END();
RETURN_BOOL(zend_finite(dval));
}
/* }}} */
/* {{{ Returns whether argument is infinite */
PHP_FUNCTION(is_infinite)
{
double dval;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_DOUBLE(dval)
ZEND_PARSE_PARAMETERS_END();
RETURN_BOOL(zend_isinf(dval));
}
/* }}} */
/* {{{ Returns whether argument is not a number */
PHP_FUNCTION(is_nan)
{
double dval;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_DOUBLE(dval)
ZEND_PARSE_PARAMETERS_END();
RETURN_BOOL(zend_isnan(dval));
}
/* }}} */
/* {{{ Returns base raised to the power of exponent. Returns integer result when possible */
PHP_FUNCTION(pow)
{
zval *zbase, *zexp;
ZEND_PARSE_PARAMETERS_START(2, 2)
Z_PARAM_ZVAL(zbase)
Z_PARAM_ZVAL(zexp)
ZEND_PARSE_PARAMETERS_END();
pow_function(return_value, zbase, zexp);
}
/* }}} */
/* {{{ Returns e raised to the power of the number */
PHP_FUNCTION(exp)
{
double num;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_DOUBLE(num)
ZEND_PARSE_PARAMETERS_END();
RETURN_DOUBLE(exp(num));
}
/* }}} */
/* {{{ Returns exp(number) - 1, computed in a way that accurate even when the value of number is close to zero */
PHP_FUNCTION(expm1)
{
double num;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_DOUBLE(num)
ZEND_PARSE_PARAMETERS_END();
RETURN_DOUBLE(expm1(num));
}
/* }}} */
/* {{{ Returns log(1 + number), computed in a way that accurate even when the value of number is close to zero */
PHP_FUNCTION(log1p)
{
double num;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_DOUBLE(num)
ZEND_PARSE_PARAMETERS_END();
RETURN_DOUBLE(log1p(num));
}
/* }}} */
/* {{{ Returns the natural logarithm of the number, or the base log if base is specified */
PHP_FUNCTION(log)
{
double num, base = 0;
ZEND_PARSE_PARAMETERS_START(1, 2)
Z_PARAM_DOUBLE(num)
Z_PARAM_OPTIONAL
Z_PARAM_DOUBLE(base)
ZEND_PARSE_PARAMETERS_END();
if (ZEND_NUM_ARGS() == 1) {
RETURN_DOUBLE(log(num));
}
if (base == 2.0) {
RETURN_DOUBLE(log2(num));
}
if (base == 10.0) {
RETURN_DOUBLE(log10(num));
}
if (base == 1.0) {
RETURN_DOUBLE(ZEND_NAN);
}
if (base <= 0.0) {
zend_argument_value_error(2, "must be greater than 0");
RETURN_THROWS();
}
RETURN_DOUBLE(log(num) / log(base));
}
/* }}} */
/* {{{ Returns the base-10 logarithm of the number */
PHP_FUNCTION(log10)
{
double num;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_DOUBLE(num)
ZEND_PARSE_PARAMETERS_END();
RETURN_DOUBLE(log10(num));
}
/* }}} */
/* {{{ Returns the square root of the number */
PHP_FUNCTION(sqrt)
{
double num;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_DOUBLE(num)
ZEND_PARSE_PARAMETERS_END();
RETURN_DOUBLE(sqrt(num));
}
/* }}} */
/* {{{ Returns sqrt(num1*num1 + num2*num2) */
PHP_FUNCTION(hypot)
{
double num1, num2;
ZEND_PARSE_PARAMETERS_START(2, 2)
Z_PARAM_DOUBLE(num1)
Z_PARAM_DOUBLE(num2)
ZEND_PARSE_PARAMETERS_END();
RETURN_DOUBLE(hypot(num1, num2));
}
/* }}} */
/* {{{ Converts the number in degrees to the radian equivalent */
PHP_FUNCTION(deg2rad)
{
double deg;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_DOUBLE(deg)
ZEND_PARSE_PARAMETERS_END();
RETURN_DOUBLE((deg / 180.0) * M_PI);
}
/* }}} */
/* {{{ Converts the radian number to the equivalent number in degrees */
PHP_FUNCTION(rad2deg)
{
double rad;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_DOUBLE(rad)
ZEND_PARSE_PARAMETERS_END();
RETURN_DOUBLE((rad / M_PI) * 180);
}
/* }}} */
/* {{{ _php_math_basetolong */
/*
* Convert a string representation of a base(2-36) number to a long.
*/
PHPAPI zend_long _php_math_basetolong(zval *arg, int base)
{
zend_long num = 0, digit, onum;
zend_long i;
char c, *s;
if (Z_TYPE_P(arg) != IS_STRING || base < 2 || base > 36) {
return 0;
}
s = Z_STRVAL_P(arg);
for (i = Z_STRLEN_P(arg); i > 0; i--) {
c = *s++;
digit = (c >= '0' && c <= '9') ? c - '0'
: (c >= 'A' && c <= 'Z') ? c - 'A' + 10
: (c >= 'a' && c <= 'z') ? c - 'a' + 10
: base;
if (digit >= base) {
continue;
}
onum = num;
num = num * base + digit;
if (num > onum)
continue;
{
php_error_docref(NULL, E_WARNING, "Number %s is too big to fit in long", s);
return ZEND_LONG_MAX;
}
}
return num;
}
/* }}} */
/* {{{ _php_math_basetozval */
/*
* Convert a string representation of a base(2-36) number to a zval.
*/
PHPAPI void _php_math_basetozval(zend_string *str, int base, zval *ret)
{
zend_long num = 0;
double fnum = 0;
int mode = 0;
char c, *s, *e;
zend_long cutoff;
int cutlim;
int invalidchars = 0;
s = ZSTR_VAL(str);
e = s + ZSTR_LEN(str);
/* Skip leading whitespace */
while (s < e && isspace(*s)) s++;
/* Skip trailing whitespace */
while (s < e && isspace(*(e-1))) e--;
if (e - s >= 2) {
if (base == 16 && s[0] == '0' && (s[1] == 'x' || s[1] == 'X')) s += 2;
if (base == 8 && s[0] == '0' && (s[1] == 'o' || s[1] == 'O')) s += 2;
if (base == 2 && s[0] == '0' && (s[1] == 'b' || s[1] == 'B')) s += 2;
}
cutoff = ZEND_LONG_MAX / base;
cutlim = ZEND_LONG_MAX % base;
while (s < e) {
c = *s++;
/* might not work for EBCDIC */
if (c >= '0' && c <= '9')
c -= '0';
else if (c >= 'A' && c <= 'Z')
c -= 'A' - 10;
else if (c >= 'a' && c <= 'z')
c -= 'a' - 10;
else {
invalidchars++;
continue;
}
if (c >= base) {
invalidchars++;
continue;
}
switch (mode) {
case 0: /* Integer */
if (num < cutoff || (num == cutoff && c <= cutlim)) {
num = num * base + c;
break;
} else {
fnum = (double)num;
mode = 1;
}
ZEND_FALLTHROUGH;
case 1: /* Float */
fnum = fnum * base + c;
}
}
if (invalidchars > 0) {
zend_error(E_DEPRECATED, "Invalid characters passed for attempted conversion, these have been ignored");
}
if (mode == 1) {
ZVAL_DOUBLE(ret, fnum);
} else {
ZVAL_LONG(ret, num);
}
}
/* }}} */
/* {{{ _php_math_longtobase */
/*
* Convert a long to a string containing a base(2-36) representation of
* the number.
*/
PHPAPI zend_string * _php_math_longtobase(zend_long arg, int base)
{
static const char digits[] = "0123456789abcdefghijklmnopqrstuvwxyz";
char buf[(sizeof(zend_ulong) << 3) + 1];
char *ptr, *end;
zend_ulong value;
if (base < 2 || base > 36) {
return ZSTR_EMPTY_ALLOC();
}
value = arg;
end = ptr = buf + sizeof(buf) - 1;
*ptr = '\0';
do {
ZEND_ASSERT(ptr > buf);
*--ptr = digits[value % base];
value /= base;
} while (value);
return zend_string_init(ptr, end - ptr, 0);
}
/* }}} */
/* {{{ _php_math_longtobase_pwr2 */
/*
* Convert a long to a string containing a base(2,4,6,16,32) representation of
* the number.
*/
static zend_always_inline zend_string * _php_math_longtobase_pwr2(zend_long arg, int base_log2)
{
static const char digits[] = "0123456789abcdefghijklmnopqrstuvwxyz";
zend_ulong value;
size_t len;
zend_string *ret;
char *ptr;
value = arg;
if (value == 0) {
len = 1;
} else {
len = ((sizeof(value) * 8 - zend_ulong_nlz(value)) + (base_log2 - 1)) / base_log2;
}
ret = zend_string_alloc(len, 0);
ptr = ZSTR_VAL(ret) + len;
*ptr = '\0';
do {
ZEND_ASSERT(ptr > ZSTR_VAL(ret));
*--ptr = digits[value & ((1 << base_log2) - 1)];
value >>= base_log2;
} while (value);
return ret;
}
/* }}} */
/* {{{ _php_math_zvaltobase */
/*
* Convert a zval to a string containing a base(2-36) representation of
* the number.
*/
PHPAPI zend_string * _php_math_zvaltobase(zval *arg, int base)
{
static const char digits[] = "0123456789abcdefghijklmnopqrstuvwxyz";
if ((Z_TYPE_P(arg) != IS_LONG && Z_TYPE_P(arg) != IS_DOUBLE) || base < 2 || base > 36) {
return ZSTR_EMPTY_ALLOC();
}
if (Z_TYPE_P(arg) == IS_DOUBLE) {
double fvalue = floor(Z_DVAL_P(arg)); /* floor it just in case */
char *ptr, *end;
char buf[(sizeof(double) << 3) + 1];
/* Don't try to convert +/- infinity */
if (fvalue == ZEND_INFINITY || fvalue == -ZEND_INFINITY) {
zend_value_error("An infinite value cannot be converted to base %d", base);
return NULL;
}
end = ptr = buf + sizeof(buf) - 1;
*ptr = '\0';
do {
*--ptr = digits[(int) fmod(fvalue, base)];
fvalue /= base;
} while (ptr > buf && fabs(fvalue) >= 1);
return zend_string_init(ptr, end - ptr, 0);
}
return _php_math_longtobase(Z_LVAL_P(arg), base);
}
/* }}} */
/* {{{ Returns the decimal equivalent of the binary number */
PHP_FUNCTION(bindec)
{
zend_string *arg;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_STR(arg)
ZEND_PARSE_PARAMETERS_END();
_php_math_basetozval(arg, 2, return_value);
}
/* }}} */
/* {{{ Returns the decimal equivalent of the hexadecimal number */
PHP_FUNCTION(hexdec)
{
zend_string *arg;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_STR(arg)
ZEND_PARSE_PARAMETERS_END();
_php_math_basetozval(arg, 16, return_value);
}
/* }}} */
/* {{{ Returns the decimal equivalent of an octal string */
PHP_FUNCTION(octdec)
{
zend_string *arg;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_STR(arg)
ZEND_PARSE_PARAMETERS_END();
_php_math_basetozval(arg, 8, return_value);
}
/* }}} */
/* {{{ Returns a string containing a binary representation of the number */
PHP_FUNCTION(decbin)
{
zend_long arg;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_LONG(arg)
ZEND_PARSE_PARAMETERS_END();
RETURN_STR(_php_math_longtobase_pwr2(arg, 1));
}
/* }}} */
/* {{{ Returns a string containing an octal representation of the given number */
PHP_FUNCTION(decoct)
{
zend_long arg;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_LONG(arg)
ZEND_PARSE_PARAMETERS_END();
RETURN_STR(_php_math_longtobase_pwr2(arg, 3));
}
/* }}} */
/* {{{ Returns a string containing a hexadecimal representation of the given number */
PHP_FUNCTION(dechex)
{
zend_long arg;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_LONG(arg)
ZEND_PARSE_PARAMETERS_END();
RETURN_STR(_php_math_longtobase_pwr2(arg, 4));
}
/* }}} */
ZEND_FRAMELESS_FUNCTION(dechex, 1)
{
zend_long arg;
Z_FLF_PARAM_LONG(1, arg);
RETVAL_STR(_php_math_longtobase_pwr2(arg, 4));
flf_clean:;
}
/* {{{ Converts a number in a string from any base <= 36 to any base <= 36 */
PHP_FUNCTION(base_convert)
{
zval temp;
zend_string *number;
zend_long frombase, tobase;
zend_string *result;
ZEND_PARSE_PARAMETERS_START(3, 3)
Z_PARAM_STR(number)
Z_PARAM_LONG(frombase)
Z_PARAM_LONG(tobase)
ZEND_PARSE_PARAMETERS_END();
if (frombase < 2 || frombase > 36) {
zend_argument_value_error(2, "must be between 2 and 36 (inclusive)");
RETURN_THROWS();
}
if (tobase < 2 || tobase > 36) {
zend_argument_value_error(3, "must be between 2 and 36 (inclusive)");
RETURN_THROWS();
}
_php_math_basetozval(number, (int)frombase, &temp);
result = _php_math_zvaltobase(&temp, (int)tobase);
if (!result) {
RETURN_THROWS();
}
RETVAL_STR(result);
}
/* }}} */
/* {{{ _php_math_number_format */
PHPAPI zend_string *_php_math_number_format(double d, int dec, char dec_point, char thousand_sep)
{
return _php_math_number_format_ex(d, dec, &dec_point, 1, &thousand_sep, 1);
}
PHPAPI zend_string *_php_math_number_format_ex(double d, int dec, const char *dec_point,
size_t dec_point_len, const char *thousand_sep, size_t thousand_sep_len)
{
zend_string *res;
zend_string *tmpbuf;
char *s, *t; /* source, target */
char *dp;
size_t integral;
size_t reslen = 0;
int count = 0;
int is_negative = 0;
if (d < 0) {
is_negative = 1;
d = -d;
}
d = _php_math_round(d, dec, PHP_ROUND_HALF_UP);
dec = MAX(0, dec);
tmpbuf = strpprintf(0, "%.*F", dec, d);
if (tmpbuf == NULL) {
return NULL;
} else if (!isdigit((int)ZSTR_VAL(tmpbuf)[0])) {
return tmpbuf;
}
/* Check if the number is no longer negative after rounding */
if (is_negative && d == 0) {
is_negative = 0;
}
/* find decimal point, if expected */
if (dec) {
dp = strpbrk(ZSTR_VAL(tmpbuf), ".,");
} else {
dp = NULL;
}
/* calculate the length of the return buffer */
if (dp) {
integral = (dp - ZSTR_VAL(tmpbuf));
} else {
/* no decimal point was found */
integral = ZSTR_LEN(tmpbuf);
}
/* allow for thousand separators */
if (thousand_sep) {
integral = zend_safe_addmult((integral-1)/3, thousand_sep_len, integral, "number formatting");
}
reslen = integral;
if (dec) {
reslen += dec;
if (dec_point) {
reslen = zend_safe_addmult(reslen, 1, dec_point_len, "number formatting");
}
}
/* add a byte for minus sign */
if (is_negative) {
reslen++;
}
res = zend_string_alloc(reslen, 0);
s = ZSTR_VAL(tmpbuf) + ZSTR_LEN(tmpbuf) - 1;
t = ZSTR_VAL(res) + reslen;
*t-- = '\0';
/* copy the decimal places.
* Take care, as the sprintf implementation may return less places than
* we requested due to internal buffer limitations */
if (dec) {
size_t declen = (dp ? s - dp : 0);
size_t topad = (size_t)dec > declen ? dec - declen : 0;
/* pad with '0's */
while (topad--) {
*t-- = '0';
}
if (dp) {
s -= declen + 1; /* +1 to skip the point */
t -= declen;
/* now copy the chars after the point */
memcpy(t + 1, dp + 1, declen);
}
/* add decimal point */
if (dec_point) {
t -= dec_point_len;
memcpy(t + 1, dec_point, dec_point_len);
}
}
/* copy the numbers before the decimal point, adding thousand
* separator every three digits */
while (s >= ZSTR_VAL(tmpbuf)) {
*t-- = *s--;
if (thousand_sep && (++count%3)==0 && s >= ZSTR_VAL(tmpbuf)) {
t -= thousand_sep_len;
memcpy(t + 1, thousand_sep, thousand_sep_len);
}
}
/* and a minus sign, if needed */
if (is_negative) {
*t-- = '-';
}
ZSTR_LEN(res) = reslen;
zend_string_release_ex(tmpbuf, 0);
return res;
}
PHPAPI zend_string *_php_math_number_format_long(zend_long num, zend_long dec, const char *dec_point,
size_t dec_point_len, const char *thousand_sep, size_t thousand_sep_len)
{
static const zend_ulong powers[] = {
1, 10, 100, 1000, 10000,
100000, 1000000, 10000000, 100000000, 1000000000,
#if SIZEOF_ZEND_LONG == 8
10000000000, 100000000000, 1000000000000, 10000000000000, 100000000000000,
1000000000000000, 10000000000000000, 100000000000000000, 1000000000000000000, 10000000000000000000ul
#elif SIZEOF_ZEND_LONG > 8
# error "Unknown SIZEOF_ZEND_LONG"
#endif
};
int is_negative = 0;
zend_ulong tmpnum;
zend_ulong power;
zend_ulong power_half;
zend_ulong rest;
zend_string *tmpbuf;
zend_string *res;
size_t reslen;
char *s, *t; /* source, target */
int count = 0;
size_t topad;
// unsigned absolute number and memorize negative sign
if (num < 0) {
is_negative = 1;
tmpnum = ((zend_ulong)-(num + 1)) + 1;
} else {
tmpnum = (zend_ulong)num;
}
// rounding the number
if (dec < 0) {
// Check rounding to more negative places than possible
if (dec < -(sizeof(powers) / sizeof(powers[0]) - 1)) {
tmpnum = 0;
} else {
power = powers[-dec];
power_half = power / 2;
rest = tmpnum % power;
tmpnum = tmpnum / power;
if (rest >= power_half) {
tmpnum = tmpnum * power + power;
} else {
tmpnum = tmpnum * power;
}
}
// prevent resulting in negative zero
if (tmpnum == 0) {
is_negative = 0;
}
}
tmpbuf = strpprintf(0, ZEND_ULONG_FMT, tmpnum);
reslen = ZSTR_LEN(tmpbuf);
/* allow for thousand separators */
if (thousand_sep) {
reslen = zend_safe_addmult((reslen-1)/3, thousand_sep_len, reslen, "number formatting");
}
reslen += is_negative;
if (dec > 0) {
reslen += dec;
if (dec_point) {
reslen = zend_safe_addmult(reslen, 1, dec_point_len, "number formatting");
}
}
res = zend_string_alloc(reslen, 0);
s = ZSTR_VAL(tmpbuf) + ZSTR_LEN(tmpbuf) - 1;
t = ZSTR_VAL(res) + reslen;
*t-- = '\0';
/* copy the decimal places. */
if (dec > 0) {
topad = (size_t)dec;
/* pad with '0's */
while (topad--) {
*t-- = '0';
}
/* add decimal point */
if (dec_point) {
t -= dec_point_len;
memcpy(t + 1, dec_point, dec_point_len);
}
}
/* copy the numbers before the decimal point, adding thousand
* separator every three digits */
while (s >= ZSTR_VAL(tmpbuf)) {
*t-- = *s--;
if (thousand_sep && (++count % 3) == 0 && s >= ZSTR_VAL(tmpbuf)) {
t -= thousand_sep_len;
memcpy(t + 1, thousand_sep, thousand_sep_len);
}
}
if (is_negative) {
*t-- = '-';
}
ZSTR_LEN(res) = reslen;
zend_string_release_ex(tmpbuf, 0);
return res;
}
/* {{{ Formats a number with grouped thousands */
PHP_FUNCTION(number_format)
{
zval* num;
zend_long dec = 0;
int dec_int;
char *thousand_sep = NULL, *dec_point = NULL;
size_t thousand_sep_len = 0, dec_point_len = 0;
ZEND_PARSE_PARAMETERS_START(1, 4)
Z_PARAM_NUMBER(num)
Z_PARAM_OPTIONAL
Z_PARAM_LONG(dec)
Z_PARAM_STRING_OR_NULL(dec_point, dec_point_len)
Z_PARAM_STRING_OR_NULL(thousand_sep, thousand_sep_len)
ZEND_PARSE_PARAMETERS_END();
if (dec_point == NULL) {
dec_point = ".";
dec_point_len = 1;
}
if (thousand_sep == NULL) {
thousand_sep = ",";
thousand_sep_len = 1;
}
switch (Z_TYPE_P(num)) {
case IS_LONG:
RETURN_STR(_php_math_number_format_long(Z_LVAL_P(num), dec, dec_point, dec_point_len, thousand_sep, thousand_sep_len));
break;
case IS_DOUBLE:
// double values of >= 2^52 can not have fractional digits anymore
// Casting to long on 64bit will not loose precision on rounding
if (UNEXPECTED(
(Z_DVAL_P(num) >= 4503599627370496.0 || Z_DVAL_P(num) <= -4503599627370496.0)
&& ZEND_DOUBLE_FITS_LONG(Z_DVAL_P(num))
)) {
RETURN_STR(_php_math_number_format_long((zend_long)Z_DVAL_P(num), dec, dec_point, dec_point_len, thousand_sep, thousand_sep_len));
break;
}
if (dec >= 0) {
dec_int = ZEND_LONG_INT_OVFL(dec) ? INT_MAX : (int)dec;
} else {
dec_int = ZEND_LONG_INT_UDFL(dec) ? INT_MIN : (int)dec;
}
RETURN_STR(_php_math_number_format_ex(Z_DVAL_P(num), dec_int, dec_point, dec_point_len, thousand_sep, thousand_sep_len));
break;
EMPTY_SWITCH_DEFAULT_CASE()
}
}
/* }}} */
/* {{{ Returns the remainder of dividing x by y as a float */
PHP_FUNCTION(fmod)
{
double num1, num2;
ZEND_PARSE_PARAMETERS_START(2, 2)
Z_PARAM_DOUBLE(num1)
Z_PARAM_DOUBLE(num2)
ZEND_PARSE_PARAMETERS_END();
RETURN_DOUBLE(fmod(num1, num2));
}
/* }}} */
/* {{{ Perform floating-point division of dividend / divisor
with IEEE-754 semantics for division by zero. */
#ifdef __clang__
__attribute__((no_sanitize("float-divide-by-zero")))
#endif
PHP_FUNCTION(fdiv)
{
double dividend, divisor;
ZEND_PARSE_PARAMETERS_START(2, 2)
Z_PARAM_DOUBLE(dividend)
Z_PARAM_DOUBLE(divisor)
ZEND_PARSE_PARAMETERS_END();
RETURN_DOUBLE(dividend / divisor);
}
/* }}} */
/* {{{ Perform floating-point exponentiation with IEEE-754 semantics. */
PHP_FUNCTION(fpow)
{
double base, exponent;
ZEND_PARSE_PARAMETERS_START(2, 2)
Z_PARAM_DOUBLE(base)
Z_PARAM_DOUBLE(exponent)
ZEND_PARSE_PARAMETERS_END();
RETURN_DOUBLE(pow(base, exponent));
}
/* }}} */
/* {{{ Returns the integer quotient of the division of dividend by divisor */
PHP_FUNCTION(intdiv)
{
zend_long dividend, divisor;
ZEND_PARSE_PARAMETERS_START(2, 2)
Z_PARAM_LONG(dividend)
Z_PARAM_LONG(divisor)
ZEND_PARSE_PARAMETERS_END();
if (divisor == 0) {
zend_throw_exception_ex(zend_ce_division_by_zero_error, 0, "Division by zero");
RETURN_THROWS();
} else if (divisor == -1 && dividend == ZEND_LONG_MIN) {
/* Prevent overflow error/crash ... really should not happen:
We don't return a float here as that violates function contract */
zend_throw_exception_ex(zend_ce_arithmetic_error, 0, "Division of PHP_INT_MIN by -1 is not an integer");
RETURN_THROWS();
}
RETURN_LONG(dividend / divisor);
}
/* }}} */
|