php-src/ext/standard/tests/array/array_next_error2.phpt
Nikita Popov 25f1c405ff Update ext/standard parameter names
Closes GH-6214.
2020-09-29 16:49:46 +02:00

15 lines
296 B
PHP

--TEST--
next - ensure we cannot pass a temporary
--FILE--
<?php
function f() {
return array(1, 2);
}
var_dump(next(array(1, 2)));
?>
--EXPECTF--
Fatal error: Uncaught Error: next(): Argument #1 ($array) cannot be passed by reference in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d