3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** by www.phpddt.com */ $arr = array("a"=>"PHP","b"=>"中国"); echo json_encode($arr); //中文乱码:["PHP","\u4e2d\u56fd"] //json_encode前对变量urlencode即可 foreach ($arr as $k => $v){ $arr[$k] = urlencode($v); } echo urldecode(json_encode($arr)); //{"a":"PHP","b":"中国"} $str=md5('test');echo hexdec($str)%3;
Output for git.master, git.master_jit, rfc.property-hooks
{"a":"PHP","b":"\u4e2d\u56fd"}{"a":"PHP","b":"中国"} Deprecated: Implicit conversion from float 1.2707736894140473E+37 to int loses precision in /in/CS2pF on line 13 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:
36.49 ms | 401 KiB | 8 Q