I want to remove ZERO WIDTH NON-JOINER character from a string but using str_replace wasn't useful.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
str_replace should solves this, as long as you're careful with what you're replacing.
Outputs as expected:
|
|||
|
|
|
str_replace will do what you want, but PHP does not have very good native support for Unicode. The following will do what you ask. json_decode has been used to get the Unicode char, since PHP does not support the \u syntax.
edit: While my method works, I would suggest you use fiskfisk's solution. It is less hacky than using json_decode. |
|||
|
|