3v4l.org

run code in 300+ PHP versions simultaneously
<?php //dummy data $source = [ ["name" => "test1", "start" => "2022-01-12", "end" => "2022-01-13"], ["name" => "test2", "start" => "2022-01-14", "end" => "2022-01-15"], ["name" => "test3", "start" => "2022-01-16", "end" => "2022-01-17"], ]; $arr = []; foreach ($source as $item) { $name = $item["name"]; $start = $item["start"]; $end = $item["end"]; $r = ' { "title": "' . $name . '", "start": "' . $start . '", "end": "' . $end . '" } '; array_push($arr, $r); } //var_dump($arr); echo json_encode($arr);
Output for 7.4.0 - 7.4.33, 8.0.1 - 8.0.30, 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.28, 8.4.1 - 8.4.14, 8.5.0
["\n {\n \"title\": \"test1\",\n \"start\": \"2022-01-12\",\n \"end\": \"2022-01-13\"\n }\n ","\n {\n \"title\": \"test2\",\n \"start\": \"2022-01-14\",\n \"end\": \"2022-01-15\"\n }\n ","\n {\n \"title\": \"test3\",\n \"start\": \"2022-01-16\",\n \"end\": \"2022-01-17\"\n }\n "]
Output for 8.4.15
/bin/php-8.4.15: /usr/lib/libm.so.6: version `GLIBC_2.38' not found (required by /bin/php-8.4.15) /bin/php-8.4.15: /usr/lib/libm.so.6: version `GLIBC_2.35' not found (required by /bin/php-8.4.15) /bin/php-8.4.15: /usr/lib/libc.so.6: version `GLIBC_2.34' not found (required by /bin/php-8.4.15) /bin/php-8.4.15: /usr/lib/libc.so.6: version `GLIBC_2.38' not found (required by /bin/php-8.4.15)
Process exited with code 1.

preferences:
100.19 ms | 408 KiB | 5 Q