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', ], ], ], ]; $params = explode('&', http_build_query($originalParams, null, '&')); $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/CHTBd on line 21 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:
41.78 ms | 402 KiB | 8 Q