MySQL or PHP is appending a  whenever the £ is used

前端 未结 7 2109
情话喂你
情话喂你 2020-12-01 15:05

Answers provided have all been great, I mentioned in the comments of Alnitak\'s answer that I would need to go take a look at my CSV Generation script because for whatever r

7条回答
  •  抹茶落季
    2020-12-01 15:38

    To remove a  use:

    $column = str_replace("\xc2\xa0", '', $column);

    Credits among others: How to remove all occurrences of c2a0 in a string with PHP?

提交回复
热议问题