作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我使用 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
我尝试使用原始过滤器,还做了一个 Twig 扩展:
<?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
我在我的 Controller 方法中得到了相同的结果:
echo html_entity_decode($request->query->get('date'));
执行此操作的正确方法是什么?
更新:
日期来自“文本”类型的输入。不,这是一个带有数字和/的简单字符串。
最佳答案
首先不需要对查询字符串的参数进行 url 编码,因为它已经由生成路径的函数完成。
01%252F04%252F2016
是双重 urlencoded。 PHP,当收到请求时,已经将该值解码为 01%2F04%2F2016
,但由于您对其进行了两次编码,因此它仍然是 urlencoded。您需要使用 urldecode
函数对其进行解码。或者更好:不要对其进行两次 urlencode。
没关系:
{{ 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 解码。
关于php - Twig : url_decode,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36515372/
我使用 twig 过滤器 url_encode 编码了一个 url 参数。 // app.request.query.get("date") output 01/04/2016 href="{{ pa
我是一名优秀的程序员,十分优秀!