在PHP中获取â€而不是撇号(') [英] Getting ’ instead of an apostrophe(') in PHP

查看:233
本文介绍了在PHP中获取â€而不是撇号(')的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我尝试将文字转换为utf8或从utf8转换,这似乎没有帮助。

I've tried converting the text to or from utf8, which didn't seem to help.

我得到:

"It’s Getting the Best of Me"

应该是:

"It’s Getting the Best of Me"

我从此网址

推荐答案

转换为HTML实体:

<?php
  echo mb_convert_encoding(
    file_get_contents('http://www.tvrage.com/quickinfo.php?show=Surviver&ep=20x02&exact=0'),
    "HTML-ENTITIES",
    "UTF-8"
  );
?>

请参阅docs for mb_convert_encoding 了解更多编码选项。

See docs for mb_convert_encoding for more encoding options.

这篇关于在PHP中获取â€而不是撇号(')的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆