树枝:url_decode

Twig : url_decode

我用 twig 过滤器 url_encode 编码了一个 url 参数。

// app.request.query.get("date") output 01/04/2016

href="{{ path('page', {date: app.request.query.get("date")|url_encode}) }}">

哪个输出在url

date=01%252F04%252F2016

所以在请求的页面中带有url个参数

 {{ app.request.query.get("date") }}

显示 01%2F04%2F2016 但我想要 01/04/2016

我尝试使用原始过滤器,还做了一个树枝扩展:

<?php
namespace SE\AppBundle\Twig;

class htmlEntityDecodeExtension extends \Twig_Extension
{
    public function getFilters()
    {
        return array(
            new \Twig_SimpleFilter('html_entity_decode', array($this, 'htmlEntityDecode'))
        );
    }

    public function htmlEntityDecode($html)
    {
        $html = html_entity_decode($html);
        return $html;
    }

    public function getName()
    {
        return 'html_entity_decode_extension';
    }
}

但即便如此它仍然显示 01%2F04%2F2016

我在我的控制器方法中得到了相同的结果:

echo html_entity_decode($request->query->get('date'));

执行此操作的正确方法是什么?

更新:

日期来自 'text' 类型的输入。不,这是一个带有数字和 / 的简单字符串。

没有必要首先对查询字符串的参数进行url编码,因为生成路径的函数已经完成了。

01%252F04%252F2016 被双重 url 编码。 PHP,当收到请求时,已经将该值解码为 01%2F04%2F2016,但是由于您对它进行了两次编码,它仍然是 url 编码的。您需要使用 urldecode 函数对其进行解码。或者更好:不要url编码两次。

没问题:

{{ path('page', {date: app.request.query.get("date")}) }}

更新

在源码中找到this

// "/" and "?" can be left decoded for better user experience, see
// http://tools.ietf.org/html/rfc3986#section-3.4
$url .= '?'.(false === strpos($query, '%2F') ? $query : strtr($query, array('%2F' => '/')));

因此,/ 被故意 url 解码。