PHP Parsing Problem -   and Â

后端 未结 3 1265
后悔当初
后悔当初 2020-12-03 01:20

When I try to parse some html that has   sprinkled through it and then echo it, the   \"turns into\" this character:

相关标签:
3条回答
  • 2020-12-03 01:59

    The non-breaking space exist in UTF-8 of two bytes: 0xC2 and 0xA0.

    When those bytes are represented in ISO-8859-1 (a single-byte encoding) instead of UTF-8 (a multi-byte encoding) then those bytes becomes respectively the characters  and another non-breaking space .

    Apparently you're parsing the HTML using UTF-8 and echoing the results using ISO-8859-1. To fix this problem, you need to either parse HTML using ISO-8859-1 or echo the results using UTF-8. I'd recommend to use UTF-8 all the way. Go through the PHP UTF-8 cheatsheet to align it all out.

    0 讨论(0)
  • 2020-12-03 02:08

    preg_replace() can also do the trick:

    preg_replace("/&#?[a-z0-9]{2,8};/i","", $var);
    
    0 讨论(0)
  • 2020-12-03 02:12
    html_entity_decode(" ") == '\xa0'
    

    I think by design, I don't understand why str_replace does not work for you, try this snippet:

    $nbsp = html_entity_decode(" ");
    $s = html_entity_decode("[ ]");
    $s = str_replace($nbsp, " ", $s);
    echo $s;
    

    perhaps \xa0 it's not a valid unicode string, so using the result of the html_entity_decode() may be more appropriate for text replacement instead of \xa0.

    BalusC explanation looks plausible you may trying to insert utf-8 \xc2\xa0 in the the then trying to display it as latin instead of utf8, if you want to use unicode stuff you should keep utf-8 encoding everywhere, from the charset of the server to the db, since you will have the same problem when using e.g. à

    0 讨论(0)
提交回复
热议问题