Open AndreyPopovNew opened 3 years ago
explode(PHP_EOL, $str) not work correctly when lists of URLs or UAs saved from Windows platform!!!!!!
explode(PHP_EOL, $str)
find recommendation replace with preg_split('/\n|\r\n?/', $str);
preg_split('/\n|\r\n?/', $str);
explode(PHP_EOL, $str)
not work correctly when lists of URLs or UAs saved from Windows platform!!!!!!find recommendation replace with
preg_split('/\n|\r\n?/', $str);