php-src/Zend/tests/errmsg_013.phpt

15 lines
290 B
Plaintext
Raw Normal View History

2007-02-07 11:10:32 +00:00
--TEST--
errmsg: default value for parameters with array type can only be an array or null
2007-02-07 11:10:32 +00:00
--FILE--
<?php
class test {
2020-02-03 21:52:20 +00:00
function foo(array $a = "s") {
}
2007-02-07 11:10:32 +00:00
}
echo "Done\n";
?>
2018-09-16 17:16:42 +00:00
--EXPECTF--
Fatal error: Cannot use string as default value for parameter $a of type array in %s on line %d