3v4l.org

run code in 300+ PHP versions simultaneously
<?php $data[0] = array( 'time' => '1403071646', 'netin' => '17.75', 'netout' => '22.5' ); $data[1] = array( 'time' => '1403071647', 'netin' => '17.75', 'netout' => '22.5' ); $data[2] = array( 'time' => '1403071649', 'netin' => '17.75', 'netout' => '22.5' ); // trying to make lines 15-19 become the following: // $output .= "{'x':'".date('Y-m-d H:i:s', $stat->time)."','y':'".number_format(round($stat->netin) / 1024, 2)."','z':'".number_format(round($stat->netout) / 1024, 2)."'}"; function chart_data($data, $items) { $count = count($data); $i = 1; foreach ($data as $stat) { $output .= '{'; foreach ($items as $key => $func) { $output .= "'".$key."':'".$func($stat)."'"; } $output .= '}'; if ($i < $count) { $output .= ","; } $output .= "\n"; $i++; } echo $output; } $items = array( 'x' => function ($stat) { return date('Y-m-d H:i:s', $stat->time); }, 'y' => function ($stat) { return number_format(round($stat->netin) / 1024, 2); }, 'z' => function ($stat) { return number_format(round($stat->netout) / 1024, 2); } ); chart_data($data, $items);
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Warning: Undefined variable $output in /in/SVLDT on line 15 Warning: Attempt to read property "time" on array in /in/SVLDT on line 31 Warning: Attempt to read property "netin" on array in /in/SVLDT on line 34 Deprecated: round(): Passing null to parameter #1 ($num) of type int|float is deprecated in /in/SVLDT on line 34 Warning: Attempt to read property "netout" on array in /in/SVLDT on line 37 Deprecated: round(): Passing null to parameter #1 ($num) of type int|float is deprecated in /in/SVLDT on line 37 Warning: Attempt to read property "time" on array in /in/SVLDT on line 31 Warning: Attempt to read property "netin" on array in /in/SVLDT on line 34 Deprecated: round(): Passing null to parameter #1 ($num) of type int|float is deprecated in /in/SVLDT on line 34 Warning: Attempt to read property "netout" on array in /in/SVLDT on line 37 Deprecated: round(): Passing null to parameter #1 ($num) of type int|float is deprecated in /in/SVLDT on line 37 Warning: Attempt to read property "time" on array in /in/SVLDT on line 31 Warning: Attempt to read property "netin" on array in /in/SVLDT on line 34 Deprecated: round(): Passing null to parameter #1 ($num) of type int|float is deprecated in /in/SVLDT on line 34 Warning: Attempt to read property "netout" on array in /in/SVLDT on line 37 Deprecated: round(): Passing null to parameter #1 ($num) of type int|float is deprecated in /in/SVLDT on line 37 {'x':'2014-06-18 08:41:53''y':'0.00''z':'0.00'}, {'x':'2014-06-18 08:41:53''y':'0.00''z':'0.00'}, {'x':'2014-06-18 08:41:53''y':'0.00''z':'0.00'}
Output for 8.0.0 - 8.0.12, 8.0.14 - 8.0.30
Warning: Undefined variable $output in /in/SVLDT on line 15 Warning: Attempt to read property "time" on array in /in/SVLDT on line 31 Warning: Attempt to read property "netin" on array in /in/SVLDT on line 34 Warning: Attempt to read property "netout" on array in /in/SVLDT on line 37 Warning: Attempt to read property "time" on array in /in/SVLDT on line 31 Warning: Attempt to read property "netin" on array in /in/SVLDT on line 34 Warning: Attempt to read property "netout" on array in /in/SVLDT on line 37 Warning: Attempt to read property "time" on array in /in/SVLDT on line 31 Warning: Attempt to read property "netin" on array in /in/SVLDT on line 34 Warning: Attempt to read property "netout" on array in /in/SVLDT on line 37 {'x':'2014-06-18 08:41:53''y':'0.00''z':'0.00'}, {'x':'2014-06-18 08:41:53''y':'0.00''z':'0.00'}, {'x':'2014-06-18 08:41:53''y':'0.00''z':'0.00'}
Output for 8.0.13
Warning: Undefined variable $output in /in/SVLDT on line 15 Warning: Attempt to read property "time" on array in /in/SVLDT on line 31 Warning: Attempt to read property "netin" on array in /in/SVLDT on line 34 Warning: Attempt to read property "netout" on array in /in/SVLDT on line 37 Warning: Attempt to read property "time" on array in /in/SVLDT on line 31 Warning: Attempt to read property "netin" on array in /in/SVLDT on line 34 Warning: Attempt to read property "netout" on array in /in/SVLDT on line 37 Warning: Attempt to read property "time" on array in /in/SVLDT on line 31 Warning: Attempt to read property "netin" on array in /in/SVLDT on line 34 Warning: Attempt to read property "netout" on array in /in/SVLDT on line 37 {'x':'2014-06-18 06:41:53''y':'0.00''z':'0.00'}, {'x':'2014-06-18 06:41:53''y':'0.00''z':'0.00'}, {'x':'2014-06-18 06:41:53''y':'0.00''z':'0.00'}
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
Notice: Undefined variable: output in /in/SVLDT on line 15 Notice: Trying to get property 'time' of non-object in /in/SVLDT on line 31 Notice: Trying to get property 'netin' of non-object in /in/SVLDT on line 34 Notice: Trying to get property 'netout' of non-object in /in/SVLDT on line 37 Notice: Trying to get property 'time' of non-object in /in/SVLDT on line 31 Notice: Trying to get property 'netin' of non-object in /in/SVLDT on line 34 Notice: Trying to get property 'netout' of non-object in /in/SVLDT on line 37 Notice: Trying to get property 'time' of non-object in /in/SVLDT on line 31 Notice: Trying to get property 'netin' of non-object in /in/SVLDT on line 34 Notice: Trying to get property 'netout' of non-object in /in/SVLDT on line 37 {'x':'1970-01-01 01:00:00''y':'0.00''z':'0.00'}, {'x':'1970-01-01 01:00:00''y':'0.00''z':'0.00'}, {'x':'1970-01-01 01:00:00''y':'0.00''z':'0.00'}
Output for 7.3.32 - 7.3.33
{'x':'1970-01-01 00:00:00''y':'0.00''z':'0.00'}, {'x':'1970-01-01 00:00:00''y':'0.00''z':'0.00'}, {'x':'1970-01-01 00:00:00''y':'0.00''z':'0.00'}
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.33
Notice: Undefined variable: output in /in/SVLDT on line 15 Notice: Trying to get property of non-object in /in/SVLDT on line 31 Notice: Trying to get property of non-object in /in/SVLDT on line 34 Notice: Trying to get property of non-object in /in/SVLDT on line 37 Notice: Trying to get property of non-object in /in/SVLDT on line 31 Notice: Trying to get property of non-object in /in/SVLDT on line 34 Notice: Trying to get property of non-object in /in/SVLDT on line 37 Notice: Trying to get property of non-object in /in/SVLDT on line 31 Notice: Trying to get property of non-object in /in/SVLDT on line 34 Notice: Trying to get property of non-object in /in/SVLDT on line 37 {'x':'1970-01-01 01:00:00''y':'0.00''z':'0.00'}, {'x':'1970-01-01 01:00:00''y':'0.00''z':'0.00'}, {'x':'1970-01-01 01:00:00''y':'0.00''z':'0.00'}
Output for 4.4.2 - 4.4.9, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
Parse error: syntax error, unexpected T_FUNCTION in /in/SVLDT on line 30
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1, 5.0.0 - 5.0.5
Parse error: parse error, unexpected T_FUNCTION in /in/SVLDT on line 30
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error in /in/SVLDT on line 30
Process exited with code 255.

preferences:
262.2 ms | 401 KiB | 398 Q