summaryrefslogtreecommitdiff
path: root/Zend/tests/add_007.phpt
blob: 3b24a1c99ca33f96bd8903bcc8496c8c18a49ce8 (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
--TEST--
adding strings to arrays
--FILE--
<?php

$a = array(1,2,3);

$s1 = "some string";

try {
	var_dump($a + $s1);
} catch (Error $e) {
	echo "\nException: " . $e->getMessage() . "\n";
}

$c = $a + $s1;
var_dump($c);

echo "Done\n";
?>
--EXPECTF--
Warning: A non-numeric value encountered in %s on line %d

Exception: Unsupported operand types

Warning: A non-numeric value encountered in %s on line %d

Fatal error: Uncaught Error: Unsupported operand types in %s:%d
Stack trace:
#0 {main}
  thrown in %s on line %d