mirror of
https://github.com/php/php-src.git
synced 2024-12-18 14:30:35 +08:00
ac0853eb26
Closes GH-5092
15 lines
290 B
PHP
15 lines
290 B
PHP
--TEST--
|
|
errmsg: default value for parameters with array type can only be an array or null
|
|
--FILE--
|
|
<?php
|
|
|
|
class test {
|
|
function foo(array $a = "s") {
|
|
}
|
|
}
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot use string as default value for parameter $a of type array in %s on line %d
|