3v4l.org

run code in 300+ PHP versions simultaneously
<? error_reporting(E_ALL); ini_set("display_errors", 1); function unicode_decode($str){ return preg_replace("/\\\u([0-9A-F]{4})/ie", "iconv('utf-16', 'utf-8', hex2str(\"$1\"))", $str); } function hex2str($hex) { $r = ''; for ($i = 0; $i < strlen($hex) - 1; $i += 2) $r .= chr(hexdec($hex[$i] . $hex[$i + 1])); return $r; } function json_utfencode($string) { return unicode_decode(json_encode($string, JSON_UNESCAPED_UNICODE)); } $arr[0]['ip'] = "İyi Yazar İçin Şunlara"; $arr[0]['time'] = time(); echo json_utfencode(array_values($arr)); ?>
Output for git.master, git.master_jit, rfc.property-hooks
<? error_reporting(E_ALL); ini_set("display_errors", 1); function unicode_decode($str){ return preg_replace("/\\\u([0-9A-F]{4})/ie", "iconv('utf-16', 'utf-8', hex2str(\"$1\"))", $str); } function hex2str($hex) { $r = ''; for ($i = 0; $i < strlen($hex) - 1; $i += 2) $r .= chr(hexdec($hex[$i] . $hex[$i + 1])); return $r; } function json_utfencode($string) { return unicode_decode(json_encode($string, JSON_UNESCAPED_UNICODE)); } $arr[0]['ip'] = "İyi Yazar İçin Şunlara"; $arr[0]['time'] = time(); echo json_utfencode(array_values($arr)); ?>

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