1--TEST--
2Bug #24208 (parse_str() is not working)
3--FILE--
4<?php
5$a = $b = $c = "oops";
6parse_str("a=1&b=2&c=3");
7var_dump($a, $b, $c);
8?>
9--EXPECTF--
10Deprecated: parse_str(): Calling parse_str() without the result argument is deprecated in %s on line %d
11string(1) "1"
12string(1) "2"
13string(1) "3"
14