I want to replace some quotes from an xml doc and use a php function for that. It works fine with all chars, besides this one:
I tried thes unicode chars but did not suceed:
'“', '”', '„', '″'
In my optinion the first one is a: „
or „
but:
echo str_replace( '„', '####', $desc );
does not work. The Result ist: ?Life?.
This is my function for testing:
echo str_replace( '„', '####', $desc );