summaryrefslogtreecommitdiff
path: root/Zend/tests/increment_001.phpt
blob: a834c5c51d5451f1123467dc553ac51545bf34aa (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
61
62
63
64
65
66
67
--TEST--
incrementing different variables
--SKIPIF--
<?php if (PHP_INT_SIZE != 4) die("skip this test is for 32bit 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,
    (string)PHP_INT_MAX
);

foreach ($a as $var) {
    try {
        $var++;
    } catch (TypeError $e) {
        echo $e->getMessage(), "\n";
    }
    var_dump($var);
}

echo "Done\n";
?>
--EXPECTF--
Cannot increment array
array(3) {
  [0]=>
  int(1)
  [1]=>
  int(2)
  [2]=>
  int(3)
}
string(1) "1"
int(2)
float(3.5)
int(1)
string(6) "strinh"
int(124)
float(3.5)
int(1)
bool(true)
bool(false)
Cannot increment object
object(stdClass)#%d (0) {
}
Cannot increment array
array(0) {
}
float(2147483648)
float(2147483648)
Done