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)); ?>

preferences:
36.69 ms | 402 KiB | 5 Q