3v4l.org

run code in 300+ PHP versions simultaneously
<?php $json = '{ "data": [ { "message_count": 14051 }, { "message_count": 12731 }, { "message_count": 7867 }, { "message_count": 6053 }, { "message_count": 4 } ] }'; $json_a=json_decode($json, true); $counting_base = ($json_a['data']); var_dump($json_a); echo array_sum($counting_base);
Output for git.master, git.master_jit
array(1) { ["data"]=> array(5) { [0]=> array(1) { ["message_count"]=> int(14051) } [1]=> array(1) { ["message_count"]=> int(12731) } [2]=> array(1) { ["message_count"]=> int(7867) } [3]=> array(1) { ["message_count"]=> int(6053) } [4]=> array(1) { ["message_count"]=> int(4) } } } 0
Output for rfc.property-hooks
array(1) { ["data"]=> array(5) { [0]=> array(1) { ["message_count"]=> int(14051) } [1]=> array(1) { ["message_count"]=> int(12731) } [2]=> array(1) { ["message_count"]=> int(7867) } [3]=> array(1) { ["message_count"]=> int(6053) } [4]=> array(1) { ["message_count"]=> int(4) } } } Warning: array_sum(): Addition is not supported on type array in /in/3fK8B on line 28 Warning: array_sum(): Addition is not supported on type array in /in/3fK8B on line 28 Warning: array_sum(): Addition is not supported on type array in /in/3fK8B on line 28 Warning: array_sum(): Addition is not supported on type array in /in/3fK8B on line 28 Warning: array_sum(): Addition is not supported on type array in /in/3fK8B on line 28 0

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.92 ms | 402 KiB | 8 Q