3v4l.org

run code in 300+ PHP versions simultaneously
<?php $jsn = <<<_JSON {"table-name":"Kiwi","created-on":"November 20, 2021","token":"lsUVozOB2TxhvMv","icons":"default","links":"default","extra":"default","mode":"Private","collaborators":[],"columns":{"Name":{"type":"text","extra":""},"Info":{"type":"longtext","extra":""},"Status":{"type":"droplist","extra":{"fr":"Pending","sc":"On-going","th":"Completed","fo":"Cancelled"}}},"data":[{"Name":"Team Reports","Info":"Submitting marketing materials reports","Status":"Completed"},{"Name":"Fabia HR","Info":"Brian asking for a report","Status":"Pending"},{"Name":"Fabia","Info":"Meeting with CEO @cafe 9:00","Status":"Cancelled"}]} _JSON; $data = json_decode($jsn, true); $data["columns"]["Task"] = $data["columns"]["Name"]; unset($data["columns"]["Name"]); echo json_encode($data, JSON_PRETTY_PRINT);
Output for git.master_jit, git.master, rfc.property-hooks
{ "table-name": "Kiwi", "created-on": "November 20, 2021", "token": "lsUVozOB2TxhvMv", "icons": "default", "links": "default", "extra": "default", "mode": "Private", "collaborators": [], "columns": { "Info": { "type": "longtext", "extra": "" }, "Status": { "type": "droplist", "extra": { "fr": "Pending", "sc": "On-going", "th": "Completed", "fo": "Cancelled" } }, "Task": { "type": "text", "extra": "" } }, "data": [ { "Name": "Team Reports", "Info": "Submitting marketing materials reports", "Status": "Completed" }, { "Name": "Fabia HR", "Info": "Brian asking for a report", "Status": "Pending" }, { "Name": "Fabia", "Info": "Meeting with CEO @cafe 9:00", "Status": "Cancelled" } ] }

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:
26.25 ms | 409 KiB | 5 Q