Home >Backend Development >PHP Tutorial >+号传到服务器后为什么echo出来不是+

+号传到服务器后为什么echo出来不是+

WBOY
WBOYOriginal
2016-06-23 14:16:161029browse

REST 服务器

我用postman给我们的rest api发送请求,有些参数是单一的字符串,有一个参数是vehicletype=1+22+8的这种形式,我在里面有echo vehicletype的值,输出来的是1 22 8,如果vehicletype=1:22:8,我echo vehicletype 的结果就是1:22:8,为什么呢?

回复讨论(解决方案)

var_dump() 看看是什么结果

urlencode?

+号在url中传输不就是等于空格吗?
应该先将值url编码后再传

请编码...这个会自动编码,所以在传递前先自己进行编码。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn