3v4l.org

run code in 300+ PHP versions simultaneously
<?php // \u0130 $s = 'u\'ZENG\u0130N OL YADA U\u011eRUNDA \xd6L\''; if ( substr($s, 0, 2) == 'u\'' && substr($s, -1) == '\'' ) { $s = substr($s, 2, strlen($s) - 3); $s = preg_replace('/\\u([0-9a-f][0-9a-f][0-9a-f][0-9a-f])/', '', $s); var_dump($s); } else { die('gestorben wegen: ' . $s); } var_dump(mb_convert_encoding('&#x0130;', 'UTF-8', 'HTML-ENTITIES') );
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
Warning: preg_replace(): Compilation failed: PCRE2 does not support \F, \L, \l, \N{name}, \U, or \u at offset 2 in /in/33JXI on line 8 NULL string(2) "İ"
Output for 7.3.12 - 7.3.33, 7.4.0 - 7.4.33
string(28) "ZENG\N OL YADA U\RUNDA \xd6L" string(2) "İ"
Output for 5.3.4 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.7 - 5.6.21, 7.0.0 - 7.0.20, 7.1.0 - 7.1.10, 7.2.0 - 7.2.33
Warning: preg_replace(): Compilation failed: PCRE does not support \L, \l, \N{name}, \U, or \u at offset 1 in /in/33JXI on line 8 NULL string(2) "İ"
Output for 5.2.11 - 5.2.17, 5.3.1 - 5.3.3
Warning: preg_replace(): Compilation failed: PCRE does not support \L, \l, \N, \U, or \u at offset 1 in /in/33JXI on line 8 NULL string(2) "İ"
Output for 4.4.0 - 4.4.9, 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.10, 5.3.0
Warning: preg_replace(): Compilation failed: PCRE does not support \L, \l, \N, \U, or \u at offset 1 in /in/33JXI on line 8 NULL string(4) "򯴂"
Output for 4.3.11, 5.0.0 - 5.0.4
Warning: preg_replace(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/33JXI on line 8 NULL string(4) "򯴂"
Output for 4.3.0 - 4.3.10
Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/33JXI on line 8 NULL string(4) "򯴂"

preferences:
214.72 ms | 401 KiB | 309 Q