mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
cdaf35033d
By mentioning the operand types. We can do that now, as the original operand types now remain available. Closes GH-5330.
27 lines
428 B
PHP
27 lines
428 B
PHP
--TEST--
|
|
multiplying 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: array * array
|
|
|
|
Fatal error: Uncaught TypeError: Unsupported operand types: array * array in %s:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line %d
|