https://bugzilla.wikimedia.org/show_bug.cgi?id=69481
Jackmcbarn <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Web browser|Google Chrome |--- --- Comment #8 from Jackmcbarn <[email protected]> --- The difference happens when preg_split is called. var_dump( preg_split( '//us', "[\xF4\x8F\xBF\xBF]", null, PREG_SPLIT_NO_EMPTY ) ); On Linux: array(3) { [0] => string(1) "[" [1] => string(4) "U+10FFFF" [2] => string(1) "]" } On Windows: array(1) { [0]=> string(6) "[U+10FFFF]" } -- You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
