vote up 1 vote down star

How replace (use regex in PHP5) invalid characters in utf-8 string on white space characters?

flag
1  
What do you want to do? get rid of white space? or utf-8 characters? Give an example. – Quinn Wilson Sep 16 at 15:19
1  
getting rid of UTF-8 characters is easy: $text = ''; :-) – Johannes Rössel Sep 16 at 15:26

1 Answer

vote up 4 vote down

use iconv

$text = iconv("UTF-8", "UTF-8//IGNORE", $text);

see the manual.

Cheers

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.