php-src/Zend/tests/sub_001.phpt
2020-02-03 22:52:20 +01:00

27 lines
394 B
PHP

--TEST--
subtracting arrays
--FILE--
<?php
$a = array(1,2,3);
$b = array(1);
try {
var_dump($a - $b);
} catch (Error $e) {
echo "\nException: " . $e->getMessage() . "\n";
}
$c = $a - $b;
var_dump($c);
echo "Done\n";
?>
--EXPECTF--
Exception: Unsupported operand types
Fatal error: Uncaught Error: Unsupported operand types in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d