http://www.cefok.com/category.php?id=54&filter_attr=a%3A1%3A{i%3A54%3Bs%3A14%3A%22The%2BNorth%2BFace%22%3B}
传的参数是:
页面捕获的结果是:a:1:{i:54;s:14:\"The+North+Face\";}差别是:\"The+North+Face\"   多了 \   和  \
请赐教

解决方案 »

  1.   

    对 url 传参处理过程 有没有问题??phpinfo  看下 magic_quotes_gpc 是否为 on
      

  2.   


    使用urldecode转换的结果并没lz描述的状况,是不是你使用的方法有错误。
    把escape符号也给算到里面去了?var_dump(urldecode('filter_attr=a%3A1%3A{i%3A54%3Bs%3A14%3A%22The%2BNorth%2BFace%22%3B}'));输出:string(45) "filter_attr=a:1:{i:54;s:14:"The+North+Face";}"
      

  3.   

    magic_quotes_gpc 为 on,
    自动转义了.
      

  4.   

    那如果是magic_quotes_gpc 为on 自动转义了 该怎么处理呢?