summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/bug24208.phpt
blob: f85c9c1e54e65f5608435fd2d06659ac69229941 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Bug #24208 (parse_str() is not working)
--FILE--
<?php
$a = $b = $c = "oops";
parse_str("a=1&b=2&c=3");
var_dump($a, $b, $c);
?>
--EXPECTF--
Deprecated: parse_str(): Calling parse_str() without the result argument is deprecated in %s on line %d
string(1) "1"
string(1) "2"
string(1) "3"