summaryrefslogtreecommitdiff
path: root/Zend/tests/mul_001.phpt
blob: 71ec3feb54817f11b68b519a5c4da72f4bb6a56f (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
--TEST--
multiplying arrays
--FILE--
<?php

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

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

$c = $a * $b;
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