mirror of
https://github.com/php/php-src.git
synced 2024-11-26 03:16:33 +08:00
16 lines
192 B
Plaintext
16 lines
192 B
Plaintext
|
--TEST--
|
||
|
dividing arrays
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
$a = array(1,2,3);
|
||
|
$b = array(1);
|
||
|
|
||
|
$c = $a / $b;
|
||
|
var_dump($c);
|
||
|
|
||
|
echo "Done\n";
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
Fatal error: Unsupported operand types in %s on line %d
|