3v4l.org

run code in 300+ PHP versions simultaneously
<?php function to_ascii($text,$encoding="UTF-8") { if (is_string($text)) { // Includes combinations of characters that present as a single glyph $text = preg_replace_callback('/\X/u', __FUNCTION__, $text); } elseif (is_array($text) && count($text) == 1 && is_string($text[0])) { // IGNORE characters that can't be TRANSLITerated to ASCII $text = @iconv($encoding, "ASCII//IGNORE//TRANSLIT", $text[0]); // The documentation says that iconv() returns false on failure but it returns '' if ($text === '' || !is_string($text)) { $text = '?'; } elseif (preg_match('/\w/', $text)) { // If the text contains any letters... $text = preg_replace('/\W+/', '', $text); // ...then remove all non-letters } } else { // $text was not a string $text = ''; } return $text; } function find_similar3($needle,$str,$keep_needle_order=false){ if(!is_string($needle)||!is_string($str)) { return false; } $valid=array(); //get encodings and words from haystack and needle setlocale(LC_CTYPE, 'en_GB.UTF8'); $encoding_s=mb_detect_encoding($str); $encoding_n=mb_detect_encoding($needle); mb_regex_encoding ($encoding_n); $pneed=array_filter(mb_split('\W',$needle)); mb_regex_encoding ($encoding_s); $pstr=array_filter(mb_split('\W',$str)); foreach($pneed as $k=>$word)//loop trough needle's words { foreach($pstr as $key=>$w) { if($encoding_n!==$encoding_s) {//if $encodings are not the same make some transliteration $tmp_word=($encoding_n!=='ASCII')?to_ascii($word,$encoding_n):$word; $tmp_w=($encoding_s!=='ASCII')?to_ascii($w,$encoding_s):$w; }else { $tmp_word=$word; $tmp_w=$w; } $tmp[$tmp_w]=levenshtein($tmp_w,$tmp_word);//collect levenshtein distances $keys[$tmp_w]=array($key,$w); } $nominees=array_flip(array_keys($tmp,min($tmp)));//get the nominees $tmp=10000; foreach($nominees as $nominee=>$idx) {//test sound like to get more precision $idx=levenshtein(metaphone($nominee),metaphone($tmp_word)); if($idx<$tmp){ $answer=$nominee;//get the winner } unset($nominees[$nominee]); } if(!$keep_needle_order){ $valid[$keys[$answer][0]]=$keys[$answer][1];//get the right form of the winner } else{ $valid[$k]=$keys[$answer][1]; } $tmp=$nominees=array();//clean a little for the next iteration } if(!$keep_needle_order) { ksort($valid); } $valid=array_values($valid);//get only the values /*return the array of the closest value to the needle according to this algorithm of course*/ return $valid; } var_dump(find_similar3('i knew you love me','finally i know you loved me and all my pets')); var_dump(find_similar3('I you love','This is a demo text and I love you about this')); var_dump(find_similar3('a unik idia','I have a unique idea. Do you need?')); var_dump(find_similar3("Goebel, Weiss, Goethe, Goethe und Goetz",'Weiß, Goldmann, Göbel, Weiss, Göthe, Goethe und Götz')); var_dump(find_similar3('Ḽơᶉëᶆ ȋṕšᶙṁ ḍỡḽǭᵳ ʂǐť ӓṁệẗ, ĉṓɲṩḙċťᶒțûɾ ấɖḯƥĭṩčįɳġ ḝłįʈ', 'Ḽơᶉëᶆ ȋṕšᶙṁ ḍỡḽǭᵳ ʂǐť ӓṁệẗ, ĉṓɲṩḙċťᶒțûɾ ấɖḯƥĭṩčįɳġ ḝłįʈ, șếᶑ ᶁⱺ ẽḭŭŝḿꝋď ṫĕᶆᶈṓɍ ỉñḉīḑȋᵭṵńť ṷŧ ḹẩḇőꝛế éȶ đꝍꞎôꝛȇ ᵯáꞡᶇā ąⱡîɋṹẵ.'));
Output for 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.32, 8.0.0 - 8.0.12, 8.0.14 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.19, 8.3.0 - 8.3.4, 8.3.6 - 8.3.7
array(5) { [0]=> string(1) "i" [1]=> string(4) "know" [2]=> string(3) "you" [3]=> string(5) "loved" [4]=> string(2) "me" } array(3) { [0]=> string(1) "I" [1]=> string(4) "love" [2]=> string(3) "you" } array(3) { [0]=> string(1) "a" [1]=> string(6) "unique" [2]=> string(4) "idea" } array(5) { [0]=> string(6) "Göbel" [1]=> string(5) "Weiss" [2]=> string(6) "Goethe" [3]=> string(3) "und" [4]=> string(5) "Götz" } array(8) { [0]=> string(13) "Ḽơᶉëᶆ" [1]=> string(13) "ȋṕšᶙṁ" [2]=> string(14) "ḍỡḽǭᵳ" [3]=> string(6) "ʂǐť" [4]=> string(11) "ӓṁệẗ" [5]=> string(26) "ĉṓɲṩḙċťᶒțûɾ" [6]=> string(23) "ấɖḯƥĭṩčįɳġ" [7]=> string(9) "ḝłįʈ" }
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 array(5) { [0]=> string(1) "i" [1]=> string(4) "know" [2]=> string(3) "you" [3]=> string(5) "loved" [4]=> string(2) "me" } array(3) { [0]=> string(1) "I" [1]=> string(4) "love" [2]=> string(3) "you" } array(3) { [0]=> string(1) "a" [1]=> string(6) "unique" [2]=> string(4) "idea" } array(5) { [0]=> string(6) "Göbel" [1]=> string(5) "Weiss" [2]=> string(6) "Goethe" [3]=> string(3) "und" [4]=> string(5) "Götz" } array(8) { [0]=> string(13) "Ḽơᶉëᶆ" [1]=> string(13) "ȋṕšᶙṁ" [2]=> string(14) "ḍỡḽǭᵳ" [3]=> string(6) "ʂǐť" [4]=> string(11) "ӓṁệẗ" [5]=> string(26) "ĉṓɲṩḙċťᶒțûɾ" [6]=> string(23) "ấɖḯƥĭṩčįɳġ" [7]=> string(9) "ḝłįʈ" }
Output for 7.3.32 - 7.3.33, 7.4.33, 8.0.13
array(5) { [0]=> string(1) "i" [1]=> string(4) "know" [2]=> string(3) "you" [3]=> string(5) "loved" [4]=> string(2) "me" } array(3) { [0]=> string(1) "I" [1]=> string(4) "love" [2]=> string(3) "you" } array(3) { [0]=> string(1) "a" [1]=> string(6) "unique" [2]=> string(4) "idea" } Fatal error: Uncaught Error: Call to undefined function iconv() in /in/l3Bot:12 Stack trace: #0 [internal function]: to_ascii(Array) #1 /in/l3Bot(8): preg_replace_callback('/\\X/u', 'to_ascii', 'Wei\xC3\x9F') #2 /in/l3Bot(57): to_ascii('Wei\xC3\x9F', 'UTF-8') #3 /in/l3Bot(105): find_similar3('Goebel, Weiss, ...', 'Wei\xC3\x9F, Goldmann...') #4 {main} thrown in /in/l3Bot on line 12
Process exited with code 255.
Output for 4.4.0 - 4.4.9, 5.4.0 - 5.4.45
array(5) { [0]=> string(1) "i" [1]=> string(4) "know" [2]=> string(3) "you" [3]=> string(5) "loved" [4]=> string(2) "me" } array(3) { [0]=> string(1) "I" [1]=> string(4) "love" [2]=> string(3) "you" } array(3) { [0]=> string(1) "a" [1]=> string(6) "unique" [2]=> string(4) "idea" }
Process exited with code 255.
Output for 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29
array(5) { [0]=> string(1) "i" [1]=> string(4) "know" [2]=> string(3) "you" [3]=> string(5) "loved" [4]=> string(2) "me" } array(3) { [0]=> string(1) "I" [1]=> string(4) "love" [2]=> string(3) "you" } array(3) { [0]=> string(1) "a" [1]=> string(6) "unique" [2]=> string(4) "idea" } array(5) { [0]=> string(6) "Göbel" [1]=> string(5) "Weiss" [2]=> string(6) "Goethe" [3]=> string(3) "und" [4]=> string(5) "Götz" } array(11) { [0]=> string(5) "Ḽơ" [1]=> string(2) "ë" [2]=> string(7) "ȋṕš" [3]=> string(3) "ṁ" [4]=> string(11) "ḍỡḽǭ" [5]=> string(6) "ʂǐť" [6]=> string(11) "ӓṁệẗ" [7]=> string(17) "ĉṓɲṩḙċť" [8]=> string(6) "țûɾ" [9]=> string(23) "ấɖḯƥĭṩčįɳġ" [10]=> string(9) "ḝłįʈ" }
Output for 5.0.4
array(5) { [0]=> string(1) "i" [1]=> string(4) "know" [2]=> string(3) "you" [3]=> string(5) "loved" [4]=> string(2) "me" } array(3) { [0]=> string(1) "I" [1]=> string(4) "love" [2]=> string(3) "you" } array(3) { [0]=> string(1) "a" [1]=> string(6) "unique" [2]=> string(4) "idea" } Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 array(1) { [0]=> string(5) "Götz" } array(11) { [0]=> string(5) "Ḽơ" [1]=> string(2) "ë" [2]=> string(7) "ȋṕš" [3]=> string(3) "ṁ" [4]=> string(11) "ḍỡḽǭ" [5]=> string(6) "ʂǐť" [6]=> string(11) "ӓṁệẗ" [7]=> string(17) "ĉṓɲṩḙċť" [8]=> string(6) "țûɾ" [9]=> string(23) "ấɖḯƥĭṩčįɳġ" [10]=> string(9) "ḝłįʈ" }
Output for 4.3.11, 5.0.0 - 5.0.3
array(5) { [0]=> string(1) "i" [1]=> string(4) "know" [2]=> string(3) "you" [3]=> string(5) "loved" [4]=> string(2) "me" } array(3) { [0]=> string(1) "I" [1]=> string(4) "love" [2]=> string(3) "you" } array(3) { [0]=> string(1) "a" [1]=> string(6) "unique" [2]=> string(4) "idea" } Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: preg_replace_callback(): Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 array(1) { [0]=> string(5) "Götz" } array(8) { [0]=> string(13) "Ḽơᶉëᶆ" [1]=> string(13) "ȋṕšᶙṁ" [2]=> string(14) "ḍỡḽǭᵳ" [3]=> string(6) "ʂǐť" [4]=> string(11) "ӓṁệẗ" [5]=> string(26) "ĉṓɲṩḙċťᶒțûɾ" [6]=> string(23) "ấɖḯƥĭṩčįɳġ" [7]=> string(9) "ḝłįʈ" }
Output for 4.3.4 - 4.3.10
array(5) { [0]=> string(1) "i" [1]=> string(4) "know" [2]=> string(3) "you" [3]=> string(5) "loved" [4]=> string(2) "me" } array(3) { [0]=> string(1) "I" [1]=> string(4) "love" [2]=> string(3) "you" } array(3) { [0]=> string(1) "a" [1]=> string(6) "unique" [2]=> string(4) "idea" } Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 Warning: Compilation failed: PCRE does not support \L, \l, \N, \P, \p, \U, \u, or \X at offset 1 in /in/l3Bot on line 8 array(1) { [0]=> string(5) "Götz" } array(8) { [0]=> string(13) "Ḽơᶉëᶆ" [1]=> string(13) "ȋṕšᶙṁ" [2]=> string(14) "ḍỡḽǭᵳ" [3]=> string(6) "ʂǐť" [4]=> string(11) "ӓṁệẗ" [5]=> string(26) "ĉṓɲṩḙċťᶒțûɾ" [6]=> string(23) "ấɖḯƥĭṩčįɳġ" [7]=> string(9) "ḝłįʈ" }
Output for 4.3.2 - 4.3.3
Fatal error: Call to undefined function: mb_regex_encoding() in /in/l3Bot on line 42
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Call to undefined function: mb_regex_encoding() in /in/l3Bot on line 42

preferences:
330.11 ms | 401 KiB | 463 Q