循环 $_POST 变量并使用 PHP 修改 undefined
我想查看我的 PHP $_POST 变量并将任何 "undefined"
(因为 jQuery 发送它的方式)更改为 ""
或至少 " "
这样,当提交电子邮件表单时,只要未填写该值(可选字段),它就不会显示 “未定义”
。
谢谢!
I want to look through my PHP $_POST variables and change anything that is "undefined"
(because of how jQuery is sending it) to ""
or at least " "
so that when the email form is submitted it doesn't say "undefined"
wherever the value wasn't filled out (optional fields).
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我建议您考虑更改您的 javascript 以更好地处理未定义,但是..
这是一种无循环方法来做到这一点:
还有一种更典型的使用单个循环的方法,如下所示:
注意:
serialize +
unserialize
方法很酷,因为它不使用循环,但循环方法可能稍微快一些,特别是当$_POST
很大时。I recommend you consider altering your javascript to handle the undefines better, BUT..
Here is a no loops approach to do it:
There is also the more typical approach of using a single loop like so:
Note: The
serialize
+unserialize
approach is cool in that is does not use a loop, but the loop approach is probably slightly faster, especially when$_POST
is large.在 PHP 中,如果您使用 & foreach 循环中的符号将使用它作为引用而不是值。更改参考将设置原始值。
In PHP if you use an & symbol in an foreach loop it will use it as a reference instead of a value. Changing a reference will set the original value.