summaryrefslogtreecommitdiff
path: root/Zend/tests/sub_001.phpt
blob: a9438fdcde007d98f92c2fdc078f1b314d2026b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--TEST--
subtracting 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: Unsupported operand types in %s on line %d