1
0
mirror of https://github.com/php/php-src.git synced 2026-04-17 13:01:02 +02:00
Files
archived-php-src/Zend/tests/parse_str_with_unpack.phpt
2016-06-05 22:16:15 +02:00

16 lines
183 B
PHP

--TEST--
Calling parse_str through argument unpacking
--FILE--
<?php
function test() {
$i = 0;
parse_str(...["i=41"]);
var_dump($i + 1);
}
test();
?>
--EXPECT--
int(42)