如何在PHP中解码URL编码字符(字符串和数组)?

时间:2014-02-06 18:38:01

标签: php urldecode

我想解决这个问题:

this is a select list

这是我的wordpress类别的列表,但它的语言是波斯语,并且显示如下!

我已将所有php文件转换为UTF8编码,但无效。

如何解决?

1 个答案:

答案 0 :(得分:0)

哈哈:)我找到了解决方案。

使用此功能解码网址格式:urlencode ( string )

但是我的问题不是字符串,而是更改计数的数组。

我修复了这段代码:

$count=count($blog_categories);
for ($x=0;$x<$count;$x++){
$blog_categories[$x] = urldecode($blog_categories[$x]);}

评论:$blog_categories是我的数组。这个数组在wordpress中返回类别。

和结果:

enter image description here

我希望有一天我的经历可以帮到你!

祝你好运:)