mirror of
https://github.com/php/php-src.git
synced 2024-12-17 13:59:28 +08:00
cdaf35033d
By mentioning the operand types. We can do that now, as the original operand types now remain available. Closes GH-5330.
28 lines
445 B
PHP
28 lines
445 B
PHP
--TEST--
|
|
adding strings to arrays
|
|
--FILE--
|
|
<?php
|
|
|
|
$a = array(1,2,3);
|
|
|
|
$s1 = "some string";
|
|
|
|
try {
|
|
var_dump($a + $s1);
|
|
} catch (Error $e) {
|
|
echo "\nException: " . $e->getMessage() . "\n";
|
|
}
|
|
|
|
$c = $a + $s1;
|
|
var_dump($c);
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Exception: Unsupported operand types: array + string
|
|
|
|
Fatal error: Uncaught TypeError: Unsupported operand types: array + string in %s:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line %d
|