3v4l.org

run code in 300+ PHP versions simultaneously
<?php $browser_list = ["test"]; $template_directory = "test"; function getTemplateProperties() { global $browser_list; global $template_directory; $data = '{ "data": { "template_folder": "templ", "browsers": [ {"name": "Chrome"}, {"name": "iOS"}, {"name":"Android"} ] } }'; $json_data = json_decode($data); print_r($json_data); $browser_list=$json_data["data"]["browsers"]; print_r($browser_list); $template_directory=$json_data["data"]["template_folder"]; print_r($template_directory); } getTemplateProperties(); print_r( $browser_list); // outputs 15 echo "template dir: ".$template_directory; ?>
Output for git.master, git.master_jit, rfc.property-hooks
stdClass Object ( [data] => stdClass Object ( [template_folder] => templ [browsers] => Array ( [0] => stdClass Object ( [name] => Chrome ) [1] => stdClass Object ( [name] => iOS ) [2] => stdClass Object ( [name] => Android ) ) ) ) Fatal error: Uncaught Error: Cannot use object of type stdClass as array in /in/7BhbX:11 Stack trace: #0 /in/7BhbX(18): getTemplateProperties() #1 {main} thrown in /in/7BhbX on line 11
Process exited with code 255.

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:
62.53 ms | 402 KiB | 8 Q