在 PHP 中计算和回显数组键
在我的 php 代码中,我将所有验证错误消息收集到一个名为 $errors
的数组中。是否可以像这样回显所有数组元素:“1)错误 1 2)错误 2 ...”等等?
In my php code, i'm collecting all validation error messages into one array called $errors
. Is it possible to echo all array elements like that: "1) Error 1 2) Error 2 ... " and so on?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你的问题确实不清楚。无论如何,如果我理解你的问题,这应该可行:
如果你需要单个字符串中的所有消息,请使用此:
如果你需要将它们放在数组中,请使用此一个代替:
Your question is really unclear. Anyway if I understand your problem, this should work:
If you need all the messages in a single string use this:
If you need to have them in a array, use this one instead:
foreach
构造非常适合于此:我希望我理解你的问题,但事实并非如此非常清楚你想做什么
The
foreach
construct is suited well for this:I hope I understood your question, it's not really clear what you want to do
好的 ol' c 风格是完全有效的 php:
The good ol' c style is totally valid php: