PHP - 将ΓÇô转换为破折号

时间:2017-06-04 18:12:23

标签: php character-encoding special-characters decode

我在PHP脚本中发现了一些特殊字符。其中一个是ΓÇô。它实际上是短划线-的特殊字符。我应该如何将其转换回破折号以便我可以处理字符串?

1 个答案:

答案 0 :(得分:1)

我找到了答案!它的灵感来自this answer

$title = "Hunting, Tactical & Outdoor Optics eCommerce Store ΓÇô $595,000 ΓÇö SOLD";
$title = str_replace(html_entity_decode('–', ENT_COMPAT, 'UTF-8'), '-', $title);
$title = str_replace(html_entity_decode('—', ENT_COMPAT, 'UTF-8'), '-', $title);

立即更换角色无效。 <{1}}肯定是必需的。