mirror of
https://github.com/php/php-src.git
synced 2024-12-14 12:26:19 +08:00
15 lines
185 B
Plaintext
15 lines
185 B
Plaintext
|
--TEST--
|
||
|
adding numbers to arrays
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
$a = array(1,2,3);
|
||
|
|
||
|
$c = $a + 5;
|
||
|
var_dump($c);
|
||
|
|
||
|
echo "Done\n";
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
Fatal error: Unsupported operand types in %s on line %d
|