PHP GET 捕获所有
使用 php 的 GET 协议我可以将数据传递到我的程序。类似于 $_GET["fname"];
。
我想知道有什么办法可以包罗万象。我在哪里不需要在运行前知道变量名称?
Using the GET protocol with php I can get data passed to my program. With something like $_GET["fname"];
.
What I'm wondering is there any way to make some sort of a catch all. Where I did not need to know the var name before runtime?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它只是一个关联数组,像其他数组一样处理它:
如果您只想要“第一个”值或“第一个”值,请执行以下操作:
It's just an associative array, handle it like any other:
If you just want "the first" value or "the one" value, do:
您还可以像这样从
$_GET
中提取项目:您可以像这样提取多个项目:
这是您的意思吗?
You can also pull items out of
$_GET
like this:You can pull multiple items like this:
Is this what you meant?