3v4l.org

run code in 300+ PHP versions simultaneously
<?php function mb_detect_encoding2 ($string, $enc=null, $ret=null) { static $enclist = array( 'UTF-8', 'ASCII', 'ISO-8859-1', 'ISO-8859-2', 'ISO-8859-3', 'ISO-8859-4', 'ISO-8859-5', 'ISO-8859-6', 'ISO-8859-7', 'ISO-8859-8', 'ISO-8859-9', 'ISO-8859-10', 'ISO-8859-13', 'ISO-8859-14', 'ISO-8859-15', 'ISO-8859-16', 'Windows-1251', 'Windows-1252', 'Windows-1254', ); $result = false; foreach ($enclist as $item) { $sample = iconv($item, $item, $string); if (md5($sample) == md5($string)) { if ($ret === NULL) { $result = $item; } else { $result = true; } break; } } return $result; } $strings = array( 'ASCII' => 'ASCII', 'UTF-8' => "Tr\xc3\xb6t", 'Windows-1252 with ASCII' => "Tr\xf6t", 'Windows-1252 only' => "\xf6\xfd\x80", 'Windows-1252 only with an undefined character' => "\xf6\xfd\x81", ); $detect = array('ASCII', 'Windows-1252', 'UTF-8'); foreach ($strings as $name => $string) { $detected_loose = mb_detect_encoding2($string, $detect, true); $detected_strict = mb_detect_encoding2($string, $detect, false); if ($detected_loose === $detected_strict) { if ($detected_loose === false) { echo "'$name' could not be detected!\n"; } else { echo "'$name' was detected as $detected_loose\n"; } } else { echo "'$name' was " . ($detected_loose === false ? 'not detected' : "detected as $detected_loose") . ' in loose mode, but ' . ($detected_strict === false ? 'not detected' : "detected as $detected_strict") . " in strict mode\n"; } }
Output for 8.0.14 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
'ASCII' was detected as 1 'UTF-8' was detected as 1 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-1" to "ISO-8859-1" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-2" to "ISO-8859-2" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-3" to "ISO-8859-3" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-4" to "ISO-8859-4" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-5" to "ISO-8859-5" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-6" to "ISO-8859-6" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-7" to "ISO-8859-7" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-8" to "ISO-8859-8" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-9" to "ISO-8859-9" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-10" to "ISO-8859-10" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-13" to "ISO-8859-13" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-14" to "ISO-8859-14" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-15" to "ISO-8859-15" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-16" to "ISO-8859-16" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "Windows-1251" to "Windows-1251" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "Windows-1252" to "Windows-1252" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "Windows-1254" to "Windows-1254" is not allowed in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-1" to "ISO-8859-1" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-2" to "ISO-8859-2" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-3" to "ISO-8859-3" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-4" to "ISO-8859-4" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-5" to "ISO-8859-5" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-6" to "ISO-8859-6" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-7" to "ISO-8859-7" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-8" to "ISO-8859-8" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-9" to "ISO-8859-9" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-10" to "ISO-8859-10" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-13" to "ISO-8859-13" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-14" to "ISO-8859-14" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-15" to "ISO-8859-15" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-16" to "ISO-8859-16" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "Windows-1251" to "Windows-1251" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "Windows-1252" to "Windows-1252" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "Windows-1254" to "Windows-1254" is not allowed in /in/nceZs on line 16 'Windows-1252 with ASCII' could not be detected! Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-1" to "ISO-8859-1" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-2" to "ISO-8859-2" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-3" to "ISO-8859-3" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-4" to "ISO-8859-4" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-5" to "ISO-8859-5" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-6" to "ISO-8859-6" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-7" to "ISO-8859-7" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-8" to "ISO-8859-8" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-9" to "ISO-8859-9" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-10" to "ISO-8859-10" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-13" to "ISO-8859-13" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-14" to "ISO-8859-14" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-15" to "ISO-8859-15" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-16" to "ISO-8859-16" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "Windows-1251" to "Windows-1251" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "Windows-1252" to "Windows-1252" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "Windows-1254" to "Windows-1254" is not allowed in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-1" to "ISO-8859-1" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-2" to "ISO-8859-2" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-3" to "ISO-8859-3" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-4" to "ISO-8859-4" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-5" to "ISO-8859-5" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-6" to "ISO-8859-6" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-7" to "ISO-8859-7" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-8" to "ISO-8859-8" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-9" to "ISO-8859-9" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-10" to "ISO-8859-10" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-13" to "ISO-8859-13" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-14" to "ISO-8859-14" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-15" to "ISO-8859-15" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-16" to "ISO-8859-16" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "Windows-1251" to "Windows-1251" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "Windows-1252" to "Windows-1252" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "Windows-1254" to "Windows-1254" is not allowed in /in/nceZs on line 16 'Windows-1252 only' could not be detected! Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-1" to "ISO-8859-1" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-2" to "ISO-8859-2" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-3" to "ISO-8859-3" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-4" to "ISO-8859-4" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-5" to "ISO-8859-5" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-6" to "ISO-8859-6" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-7" to "ISO-8859-7" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-8" to "ISO-8859-8" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-9" to "ISO-8859-9" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-10" to "ISO-8859-10" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-13" to "ISO-8859-13" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-14" to "ISO-8859-14" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-15" to "ISO-8859-15" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-16" to "ISO-8859-16" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "Windows-1251" to "Windows-1251" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "Windows-1252" to "Windows-1252" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "Windows-1254" to "Windows-1254" is not allowed in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-1" to "ISO-8859-1" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-2" to "ISO-8859-2" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-3" to "ISO-8859-3" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-4" to "ISO-8859-4" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-5" to "ISO-8859-5" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-6" to "ISO-8859-6" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-7" to "ISO-8859-7" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-8" to "ISO-8859-8" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-9" to "ISO-8859-9" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-10" to "ISO-8859-10" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-13" to "ISO-8859-13" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-14" to "ISO-8859-14" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-15" to "ISO-8859-15" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "ISO-8859-16" to "ISO-8859-16" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "Windows-1251" to "Windows-1251" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "Windows-1252" to "Windows-1252" is not allowed in /in/nceZs on line 16 Warning: iconv(): Wrong encoding, conversion from "Windows-1254" to "Windows-1254" is not allowed in /in/nceZs on line 16 'Windows-1252 only with an undefined character' could not be detected!
Output for 7.3.32 - 7.3.33, 7.4.26, 7.4.33, 8.0.13
Fatal error: Uncaught Error: Call to undefined function iconv() in /in/nceZs:16 Stack trace: #0 /in/nceZs(36): mb_detect_encoding2('ASCII', Array, true) #1 {main} thrown in /in/nceZs on line 16
Process exited with code 255.
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.25, 8.0.0 - 8.0.12
'ASCII' was detected as 1 'UTF-8' was detected as 1 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 'Windows-1252 with ASCII' was detected as 1 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 'Windows-1252 only' was detected as 1 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 'Windows-1252 only with an undefined character' was detected as 1
Output for 7.4.27 - 7.4.32
'ASCII' was detected as 1 'UTF-8' was detected as 1 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-1' to `ISO-8859-1' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-2' to `ISO-8859-2' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-3' to `ISO-8859-3' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-4' to `ISO-8859-4' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-5' to `ISO-8859-5' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-6' to `ISO-8859-6' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-7' to `ISO-8859-7' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-8' to `ISO-8859-8' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-9' to `ISO-8859-9' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-10' to `ISO-8859-10' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-13' to `ISO-8859-13' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-14' to `ISO-8859-14' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-15' to `ISO-8859-15' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-16' to `ISO-8859-16' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `Windows-1251' to `Windows-1251' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `Windows-1252' to `Windows-1252' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `Windows-1254' to `Windows-1254' is not allowed in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-1' to `ISO-8859-1' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-2' to `ISO-8859-2' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-3' to `ISO-8859-3' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-4' to `ISO-8859-4' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-5' to `ISO-8859-5' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-6' to `ISO-8859-6' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-7' to `ISO-8859-7' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-8' to `ISO-8859-8' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-9' to `ISO-8859-9' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-10' to `ISO-8859-10' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-13' to `ISO-8859-13' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-14' to `ISO-8859-14' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-15' to `ISO-8859-15' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-16' to `ISO-8859-16' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `Windows-1251' to `Windows-1251' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `Windows-1252' to `Windows-1252' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `Windows-1254' to `Windows-1254' is not allowed in /in/nceZs on line 16 'Windows-1252 with ASCII' could not be detected! Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-1' to `ISO-8859-1' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-2' to `ISO-8859-2' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-3' to `ISO-8859-3' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-4' to `ISO-8859-4' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-5' to `ISO-8859-5' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-6' to `ISO-8859-6' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-7' to `ISO-8859-7' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-8' to `ISO-8859-8' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-9' to `ISO-8859-9' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-10' to `ISO-8859-10' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-13' to `ISO-8859-13' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-14' to `ISO-8859-14' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-15' to `ISO-8859-15' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-16' to `ISO-8859-16' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `Windows-1251' to `Windows-1251' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `Windows-1252' to `Windows-1252' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `Windows-1254' to `Windows-1254' is not allowed in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-1' to `ISO-8859-1' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-2' to `ISO-8859-2' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-3' to `ISO-8859-3' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-4' to `ISO-8859-4' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-5' to `ISO-8859-5' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-6' to `ISO-8859-6' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-7' to `ISO-8859-7' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-8' to `ISO-8859-8' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-9' to `ISO-8859-9' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-10' to `ISO-8859-10' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-13' to `ISO-8859-13' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-14' to `ISO-8859-14' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-15' to `ISO-8859-15' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-16' to `ISO-8859-16' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `Windows-1251' to `Windows-1251' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `Windows-1252' to `Windows-1252' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `Windows-1254' to `Windows-1254' is not allowed in /in/nceZs on line 16 'Windows-1252 only' could not be detected! Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-1' to `ISO-8859-1' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-2' to `ISO-8859-2' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-3' to `ISO-8859-3' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-4' to `ISO-8859-4' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-5' to `ISO-8859-5' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-6' to `ISO-8859-6' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-7' to `ISO-8859-7' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-8' to `ISO-8859-8' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-9' to `ISO-8859-9' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-10' to `ISO-8859-10' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-13' to `ISO-8859-13' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-14' to `ISO-8859-14' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-15' to `ISO-8859-15' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-16' to `ISO-8859-16' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `Windows-1251' to `Windows-1251' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `Windows-1252' to `Windows-1252' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `Windows-1254' to `Windows-1254' is not allowed in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Detected an illegal character in input string in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-1' to `ISO-8859-1' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-2' to `ISO-8859-2' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-3' to `ISO-8859-3' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-4' to `ISO-8859-4' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-5' to `ISO-8859-5' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-6' to `ISO-8859-6' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-7' to `ISO-8859-7' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-8' to `ISO-8859-8' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-9' to `ISO-8859-9' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-10' to `ISO-8859-10' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-13' to `ISO-8859-13' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-14' to `ISO-8859-14' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-15' to `ISO-8859-15' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `ISO-8859-16' to `ISO-8859-16' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `Windows-1251' to `Windows-1251' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `Windows-1252' to `Windows-1252' is not allowed in /in/nceZs on line 16 Notice: iconv(): Wrong charset, conversion from `Windows-1254' to `Windows-1254' is not allowed in /in/nceZs on line 16 'Windows-1252 only with an undefined character' could not be detected!
Output for 5.4.0 - 5.4.45
Fatal error: Call to undefined function iconv() in /in/nceZs on line 16
Process exited with code 255.
Output for 4.4.5 - 4.4.9
Fatal error: Call to undefined function: iconv() in /in/nceZs on line 16
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.4
Fatal error: Call to undefined function: iconv() in /in/nceZs on line 16
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Call to undefined function: iconv() in /in/nceZs on line 16

preferences:
333.69 ms | 401 KiB | 465 Q