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)); $result = []; foreach ($params as $param) { list($key, $value) = explode('=', $param, 2); $result[$key] = urldecode($value); } var_dump($result);
Output for git.master, git.master_jit, rfc.property-hooks
array(9) { ["foo"]=> string(3) "bar" ["faz%5B0%5D"]=> string(1) "1" ["faz%5B1%5D"]=> string(1) "2" ["faz%5B2%5D"]=> string(1) "3" ["targeting%5Bcountries%5D"]=> string(5) "US,GB" ["targeting%5Bage_min%5D"]=> string(2) "13" ["call_to_action%5Btype%5D"]=> string(10) "LEARN_MORE" ["call_to_action%5Bvalue%5D%5Blink%5D"]=> string(18) "http://example.com" ["call_to_action%5Bvalue%5D%5Bsponsorship%5D%5Bimage%5D"]=> 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:
83.6 ms | 402 KiB | 8 Q