I have a HTML string containing £ signs, for some reason i'm not able to replace them. I'm assuming this is an encoding issue although i can't work out how. The site is using ISO-8859-1 for its encoding

$str = '<span class="price">£89.99</span>';
var_dump(mb_detect_encoding($str, 'ISO-8859-1', true)); // outputs ISO-8859-1

echo str_replace(array("£","&pound;"),"",$str); // nothing is removed

echo htmlentities($str); // the entire string is converted, including £ to &pound;

Any ideas?

EDIT

should have pointed out i want to replace the £ with &pound; - i had temporarily added &pound to the array of items to replace in case it had already been converted

link|improve this question

1  
Works fine for me. – alexn Nov 22 '11 at 13:44
Everything ok here: string(10) "ISO-8859-1" <span class="price">89.99</span>&lt;span class=&quot;price&quot;&gt;&Acirc;&pound;89.99&lt;/span&gt; – samura Nov 22 '11 at 13:44
i appreciate it should work :) i guess my question should have been, why would this not work?! – seengee Nov 22 '11 at 13:45
I just copied and pasted the code you gave, the £ sign is removed on the 3rd line of code. – Nick Nov 22 '11 at 13:46
Check var_dump(mb_detect_encoding("£", 'ISO-8859-1', true)); – PiTheNumber Nov 22 '11 at 13:46
feedback

3 Answers

up vote 1 down vote accepted

Just a guess but could it be that even thou your website outputs in ISO-8859-1 encoding, your actual *.php files are saved as utf-8? i don't think that str_replace works correctly with utf-8 strings. To test it try:

str_replace(array(utf8_decode("£"),"&pound;"),"",utf8_decode($str));

Yeah, if this works then your *.php files are saved in utf-8 encoding. This means all the string constants are in utf-8. It's probably worth switching default encoding in your IDE to ISO-8859-1

link|improve this answer
That is my guess to. Check the encoding of "£". – PiTheNumber Nov 22 '11 at 13:48
echo str_replace(utf8_decode("£"),"&pound;",$str); works! – seengee Nov 22 '11 at 13:51
I must point out i have no idea how and why this works though – seengee Nov 22 '11 at 13:58
@seengee your IDE or text editor saves *.php files in utf-8 encoding. When PHP reads the strings in your source code it reads them in the same utf-8 encoding. PHP5 doesn't have full unicode support so some functionality is flawed. Changing settings in your text-editor/IDE to save your source code in ISO-8859-1 encoding will prevent this problems, and you will not need to use utf8_decode() – Ivan Nov 22 '11 at 14:03
@Ivan - i have never even thought of changing that in Netbeans, you're right though. switching to ISO in the Netbeans settings means a standard str_replace works! – seengee Nov 22 '11 at 14:10
feedback
html_entity_decode(str_replace("&pound;", "", htmlentities($str)));
link|improve this answer
oops, should have pointed out i want to replace the £ with &pound; – seengee Nov 22 '11 at 13:46
2  
@seengee then just use htmlentities($str); from Jan's answer – SERPRO Nov 22 '11 at 13:48
feedback
$str = '<span class="price">£89.99</span>';
echo str_replace("£","&pound;",$str);

Output:

<span class="price">&pound;89.99</span>
link|improve this answer
i know that should work, thats where the question comes from! See my note in Ivan's answer for the solution – seengee Nov 22 '11 at 13:54
feedback

Your Answer

 
or
required, but never shown

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