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

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

$s1 = "some string";

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

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

echo "Done\n";
?>
--EXPECTF--	
Exception: Unsupported operand types

Fatal error: Uncaught exception 'EngineException' with message 'Unsupported operand types' in %s:%d
Stack trace:
#0 {main}
  thrown in %s on line %d