File: div_int.phpt

package info (click to toggle)
php8.4 8.4.11-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 208,108 kB
  • sloc: ansic: 1,060,628; php: 35,345; sh: 11,866; cpp: 7,201; pascal: 4,913; javascript: 3,091; asm: 2,810; yacc: 2,411; makefile: 689; xml: 446; python: 301; awk: 148
file content (100 lines) | stat: -rw-r--r-- 1,425 bytes parent folder | download
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
--TEST--
BcMath\Number div int by operator
--EXTENSIONS--
bcmath
--FILE--
<?php

$values = [
    100,
    '-20',
    3,
];

foreach ($values as $value1) {
    $num1 = new BcMath\Number($value1);

    foreach ($values as $value2) {
        echo "{$value1} / {$value2}\n";
        $ret = $num1 / ((int) $value2);
        $ret2 = ((int) $value1) / (new BcMath\Number($value2));
        if ($ret->compare($ret2) !== 0) {
            echo "Result is incorrect.\n";
        }
        var_dump($ret);
        echo "\n";
    }
}
?>
--EXPECT--
100 / 100
object(BcMath\Number)#2 (2) {
  ["value"]=>
  string(1) "1"
  ["scale"]=>
  int(0)
}

100 / -20
object(BcMath\Number)#3 (2) {
  ["value"]=>
  string(2) "-5"
  ["scale"]=>
  int(0)
}

100 / 3
object(BcMath\Number)#4 (2) {
  ["value"]=>
  string(13) "33.3333333333"
  ["scale"]=>
  int(10)
}

-20 / 100
object(BcMath\Number)#1 (2) {
  ["value"]=>
  string(4) "-0.2"
  ["scale"]=>
  int(1)
}

-20 / -20
object(BcMath\Number)#2 (2) {
  ["value"]=>
  string(1) "1"
  ["scale"]=>
  int(0)
}

-20 / 3
object(BcMath\Number)#3 (2) {
  ["value"]=>
  string(13) "-6.6666666666"
  ["scale"]=>
  int(10)
}

3 / 100
object(BcMath\Number)#5 (2) {
  ["value"]=>
  string(4) "0.03"
  ["scale"]=>
  int(2)
}

3 / -20
object(BcMath\Number)#1 (2) {
  ["value"]=>
  string(5) "-0.15"
  ["scale"]=>
  int(2)
}

3 / 3
object(BcMath\Number)#2 (2) {
  ["value"]=>
  string(1) "1"
  ["scale"]=>
  int(0)
}