duanjing2013 2011-05-31 23:12
浏览 43
已采纳

回声数组ISO-8859-1值正确

I'm having troubles while printing the array values, they are originally encoded with ISO-8859-1 and when echoed they appear with "?". That's so annoying!

I have the charset defined to ISO-8859-15

$lang = array();

$lang['HOMEPAGE'] = 'âéíó';

echo $lang['HOMEPAGE'];

result: ????

Any hints?

It used to work, using the utf8_decode(); but doesn't seem to solve my problem.

EDIT:

I well, i defined the charset for ISO-8859-15, but i was including the file with the "áúóá" characters, before the html header because of cookie interaction, tried to use ob_start to use cookies on the body but the errors remained, defined charset with header() function and worked well, other solution is:

echo iconv('ISO-8859-1', 'UTF-8', $lang['PARAGRAFO1']);
  • 写回答

2条回答 默认 最新

  • dsaob80228 2011-05-31 23:16
    关注

    There are two encodings at work here:

    1. The encoding of your text, in this case the source code.

    2. The encoding of the webpage. Make sure it's set to ISO-8859-1 as well. Put this meta tag in the header of your HTML file to enforce an encoding:

      <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
      
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 CATIA有些零件打开直接单机确定终止
  • ¥15 请问有会的吗,用MATLAB做
  • ¥15 phython如何实现以下功能?查找同一用户名的消费金额合并—
  • ¥15 ARIMA模型时间序列预测用pathon解决
  • ¥15 孟德尔随机化怎样画共定位分析图
  • ¥18 模拟电路问题解答有偿速度
  • ¥15 CST仿真别人的模型结果仿真结果S参数完全不对
  • ¥15 误删注册表文件致win10无法开启
  • ¥15 请问在阿里云服务器中怎么利用数据库制作网站
  • ¥60 ESP32怎么烧录自启动程序,怎么查看客户esp32板子上程序及烧录地址