3v4l.org

run code in 300+ PHP versions simultaneously
<?php $originalParams = [ 'foo' => 'bar', 'faz' => [1,2,3], 'targeting' => [ 'countries' => 'US,GB', 'age_min' => 13, ], 'call_to_action' => [ 'type' => 'LEARN_MORE', 'value' => [ 'link' => 'http://example.com', 'sponsorship' => [ 'image' => 'http://example.com/bar.jpg', ], ], ], ]; $query = http_build_query($originalParams, null, '&'); var_dump($query); $params = explode('&', $query); $result = []; foreach ($params as $param) { list($key, $value) = explode('=', $param, 2); $result[urldecode($key)] = urldecode($value); } var_dump($result);
Output for git.master, git.master_jit, rfc.property-hooks
Deprecated: http_build_query(): Passing null to parameter #2 ($numeric_prefix) of type string is deprecated in /in/A9637 on line 21 string(291) "foo=bar&faz%5B0%5D=1&faz%5B1%5D=2&faz%5B2%5D=3&targeting%5Bcountries%5D=US%2CGB&targeting%5Bage_min%5D=13&call_to_action%5Btype%5D=LEARN_MORE&call_to_action%5Bvalue%5D%5Blink%5D=http%3A%2F%2Fexample.com&call_to_action%5Bvalue%5D%5Bsponsorship%5D%5Bimage%5D=http%3A%2F%2Fexample.com%2Fbar.jpg" array(9) { ["foo"]=> string(3) "bar" ["faz[0]"]=> string(1) "1" ["faz[1]"]=> string(1) "2" ["faz[2]"]=> string(1) "3" ["targeting[countries]"]=> string(5) "US,GB" ["targeting[age_min]"]=> string(2) "13" ["call_to_action[type]"]=> string(10) "LEARN_MORE" ["call_to_action[value][link]"]=> string(18) "http://example.com" ["call_to_action[value][sponsorship][image]"]=> string(26) "http://example.com/bar.jpg" }

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
45.26 ms | 403 KiB | 8 Q