summaryrefslogtreecommitdiff
path: root/Zend/tests/add_006.phpt
blob: 09945f3fce6c11aa442b9667cb5739b7a1a80493 (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--
adding numbers to strings
--INI--
precision=14
--FILE--
<?php

$i = 75636;
$s1 = "this is a string";
$s2 = "876222numeric";
$s3 = "48474874";
$s4 = "25.68";

try {
    $c = $i + $s1;
    var_dump($c);
} catch (\TypeError $e) {
    echo $e->getMessage() . \PHP_EOL;
}
$c = $i + $s2;
var_dump($c);

$c = $i + $s3;
var_dump($c);

$c = $i + $s4;
var_dump($c);

try {
    $c = $s1 + $i;
    var_dump($c);
} catch (\TypeError $e) {
    echo $e->getMessage() . \PHP_EOL;
}

$c = $s2 + $i;
var_dump($c);

$c = $s3 + $i;
var_dump($c);

$c = $s4 + $i;
var_dump($c);

echo "Done\n";
?>
--EXPECTF--
Unsupported operand types: int + string

Warning: A non-numeric value encountered in %s on line %d
int(951858)
int(48550510)
float(75661.68)
Unsupported operand types: string + int

Warning: A non-numeric value encountered in %s on line %d
int(951858)
int(48550510)
float(75661.68)
Done