Home > Backend Development > PHP Tutorial > laravel - 关于PHP的HTTP请求,$_REQUEST的KEY自动转义的问题

laravel - 关于PHP的HTTP请求,$_REQUEST的KEY自动转义的问题

WBOY
Release: 2016-06-06 20:35:23
Original
1587 people have browsed it

比如有这样的一个HTTP的GET请求:

<code>http://ask.segmentfault.com/api?state.code=16
</code>
Copy after login
Copy after login

PHP会自动把$_REQUEST["state.code"]转义为$_REQUEST["state_code"]

官方有这样的一个说明:

<code>Dots and spaces in variable names are converted to underscores. For example <input name="a.b"> becomes $_REQUEST["a_b"].
</code>
Copy after login
Copy after login

因为后端存储用的是MongoDB,所以希望能查询json内嵌的的数据,所以希望支持“点”这种方式的查询。针对这种问题应该如何解决呢?

顺便说下,PHP的Web Framework用的是Laravel。

回复内容:

比如有这样的一个HTTP的GET请求:

<code>http://ask.segmentfault.com/api?state.code=16
</code>
Copy after login
Copy after login

PHP会自动把$_REQUEST["state.code"]转义为$_REQUEST["state_code"]

官方有这样的一个说明:

<code>Dots and spaces in variable names are converted to underscores. For example <input name="a.b"> becomes $_REQUEST["a_b"].
</code>
Copy after login
Copy after login

因为后端存储用的是MongoDB,所以希望能查询json内嵌的的数据,所以希望支持“点”这种方式的查询。针对这种问题应该如何解决呢?

顺便说下,PHP的Web Framework用的是Laravel。

<code>http://ask.segmentfault.com/api?rq[state.code]=16
/** PHP **/
$_GET['rq']['state.code'];
</code>
Copy after login

在数组内是不会被转的,虽然麻烦了点,不过不失为一种解法…

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template