3v4l.org

run code in 300+ PHP versions simultaneously
<?php $name = "test"; $contact = "Test Contact"; $email = "test@testing.comm"; $phone = "12345678"; $obj = new stdClass(); $obj->id = "5f4e3913035190c04f69e83de9798019"; $obj->Type = "0"; $obj->Name = $name; $obj->Contact = $contact; $obj->Email = $email; $obj->Phone = $phone; $obj->Cellular = $phone; $obj->Address = "הרחוב שלי 23"; $obj->City = "תל אביב"; $obj->Zip = "11233"; $obj->Comments = "הערות יתקבלו בברכה"; $obj2 = new stdClass(); $obj2->NewAccount = $obj; $data = json_encode($obj2); function json_encode_unicode($data) { return preg_replace_callback('/(?<!\\\\)\\\\u([0-9a-f]{4})/i', function ($m) { $d = pack("H*", $m[1]); $r = mb_convert_encoding($d, "UTF8", "UTF-16BE"); return $r!=="?" && $r!=="" ? $r : $m[0]; }, json_encode($data) ); } echo json_encode_unicode($obj2);
Output for git.master, git.master_jit, rfc.property-hooks
{"NewAccount":{"id":"5f4e3913035190c04f69e83de9798019","Type":"0","Name":"test","Contact":"Test Contact","Email":"test@testing.comm","Phone":"12345678","Cellular":"12345678","Address":"הרחוב שלי 23","City":"תל אביב","Zip":"11233","Comments":"הערות יתקבלו בברכה"}}

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