How replace (use regex in PHP5) invalid characters in utf-8 string on white space characters?
$text = '';
use iconv
$text = iconv("UTF-8", "UTF-8//IGNORE", $text);
see the manual.
Cheers
Stack Overflow is a collaboratively edited question and answer site for programmers – regardless of platform or language. It's 100% free, no registration required.
about » faq »
tagged
asked
2 months ago
viewed
236 times
latest activity
$text = '';:-) – Johannes Rössel Sep 16 at 15:26