summaryrefslogtreecommitdiff
path: root/Zend/tests/decrement_001_64bit.phpt
blob: 2b2100932a3c195bfe2795c36bc5ecfecb9a7a84 (plain)
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
--TEST--
decrementing different variables
--SKIPIF--
<?php if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platform only"); ?>
--INI--
precision=14
--FILE--
<?php

$a = array(
    array(1,2,3),
    "",
    1,
    2.5,
    0,
    "string",
    "123",
    "2.5",
    NULL,
    true,
    false,
    new stdclass,
    array(),
    -PHP_INT_MAX-1,
    (string)(-PHP_INT_MAX-1),
);

foreach ($a as $var) {
    $var--;
    var_dump($var);
}

echo "Done\n";
?>
--EXPECTF--
array(3) {
  [0]=>
  int(1)
  [1]=>
  int(2)
  [2]=>
  int(3)
}
int(-1)
int(0)
float(1.5)
int(-1)
string(6) "string"
int(122)
float(1.5)
NULL
bool(true)
bool(false)
object(stdClass)#%d (0) {
}
array(0) {
}
float(-9.223372036854776E+18)
float(-9.223372036854776E+18)
Done