TypePHP 编译器 https://swoole.com/aot/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

34 lines
429 B

--TEST--
Test count() function : invalid modes in weak type mode
--SKIPIF--
--FILE--
<?php
$modes = [
COUNT_NORMAL,
COUNT_RECURSIVE,
0,
1,
-1,
2,
TRUE,
FALSE,
];
foreach ($modes as $mode) {
try {
var_dump(count([], $mode));
} catch (\ValueError $error) {
echo $error->getMessage() . \PHP_EOL;
}
}
?>
--EXPECT--
int(0)
int(0)
int(0)
int(0)
int(0)
int(0)
int(0)
int(0)