update page now
Longhorn PHP 2026 - Call For Papers

Voting

: two minus zero?
(Example: nine)

The Note You're Voting On

Michal Zalewski
19 years ago
Vladimir Kornea:
Try use html_entity_decode()

$str = 'first=value&arr[]=foo+bar&arr[]=baz';
parse_str(html_entity_decode($str), $output);
print_r($output);

Array
(
    [first] => value
    [arr] => Array
        (
            [0] => foo bar
            [1] => baz
        )

)

<< Back to user notes page

To Top