mirror of
https://github.com/php/php-src.git
synced 2024-12-15 04:45:03 +08:00
24 lines
340 B
PHP
24 lines
340 B
PHP
--TEST--
|
|
bitwise NOT and arrays
|
|
--FILE--
|
|
<?php
|
|
|
|
$a = array(1,2,3);
|
|
$b = array(1,2);
|
|
|
|
try {
|
|
var_dump(~$b);
|
|
} catch (EngineException $e) {
|
|
echo "\nException: " . $e->getMessage() . "\n";
|
|
}
|
|
|
|
$a = ~$b;
|
|
var_dump($a);
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Exception: Unsupported operand types
|
|
|
|
Fatal error: Unsupported operand types in %s on line %d
|