保持参数的特殊字符(php)

时间:2017-05-26 16:46:14

标签: php silverstripe

我正在使用SilverStripe(How to fetch value from url in silverstripe)从URL中获取参数,如果我要查看网址本身,它看起来像这样:

dg%0D%0Acer

然而,当我将其保存为变量并将其返回时,它将转换为:

dgcer

$terms = (empty($this->getRequest()->postVar('terms'))) ? ((empty($this->getRequest()->getVar('terms'))) ? '' : $this->getRequest()->getVar('terms')) : $this->getRequest()->postVar('terms');

我需要在两个项目之间保留这个空间。我该怎么做呢?它一直被剥夺。

0 个答案:

没有答案