We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 172bdd5 commit 78f5ebfCopy full SHA for 78f5ebf
ext/standard/array.c
@@ -2553,7 +2553,7 @@ PHP_FUNCTION(array_fill)
2553
2554
if (EXPECTED(num > 0)) {
2555
if (sizeof(num) > 4 && UNEXPECTED(EXPECTED(num > 0x7fffffff))) {
2556
- zend_argument_value_error(2, "is too big");
+ zend_argument_value_error(2, "is too large");
2557
RETURN_THROWS();
2558
} else if (UNEXPECTED(start_key > ZEND_LONG_MAX - num + 1)) {
2559
zend_throw_error(NULL, "Cannot add element to the array as the next element is already occupied");
0 commit comments