CodeIgniter URL - 替换(用(

时间:2011-02-21 19:59:08

标签: php url codeigniter imagemagick special-characters

我正在编写从URI段创建图像文件的方法。问题是当我输入http://example.com/class/method/value1/value2/value(3)/ value4

在imagemagick处理后,图像为:

Value1
Value2
Value ( 3 )
Value4

我以这种方式获取数据:$this->data = addslashes(urldecode($data));

然后我手动将用于生成图像的代码更改为

$image->annotateImage($draw, 20, 20, 0, "value ( 3 )");

没关系。

1 个答案:

答案 0 :(得分:0)

html_entity_decode(urldecode($data));

为我做了肮脏的工作。 :)