View difference between Paste ID: 0P8VrvGp and h95xaGCz
SHOW: | | - or go back to the newest paste.
1-
// Replace unreadable characters from the description (e.g.  )http://stats.buysellads.com/click.go?z=1293852&b=4548767&g=&s=&sw=1280&sh=800&br=safari,537.75,mac&r=0.3525264321360737&link=https://www.vultr.com
1+
// Replace unreadable characters from the description (e.g.  )
2-
$string = utf8_decode($full_event_desc);
2+
$string = utf8_decode($string);
3
$string = iconv("UTF-8", "ISO-8859-1//IGNORE", $string);    // ignore non UTF-8 characters
4
$temp = utf8_decode('Â');
5
$string = str_replace($temp, '', $string);   // replace  character with a space
6
$string = preg_replace('/[^a-zA-Z0-9_ %\[\]\.\(\)%&-]/s', ' ', $string);  // regular expression