PHP 多维数组转换为表单
抱歉问了这个白痴问题,因为 magento 我的脑子一片空白。
问题是:
我这里有一个数组:
array(2) {
[0]=>
array(3) {
["product_name"]=>
string(12) "Test Product"
["product_qty"]=>
string(6) "2.0000"
["product_price"]=>
string(7) "15.0000"
}
[1]=>
array(3) {
["product_name"]=>
string(6) "Test 2"
["product_qty"]=>
string(6) "3.0000"
["product_price"]=>
string(7) "25.0000"
}
}
我怎样才能将其转换为:
<input type="hidden" name="product1" value="Test Product" />
<input type="hidden" name="amount1" value="2" />
<input type="hidden" name="qty1" value="15" />
<input type="hidden" name="product2" value="Test 2" />
<input type="hidden" name="amount2" value="3" />
<input type="hidden" name="qty2" value="25" />
谢谢您的回答。
Sorry for asking this idiot question, my head was blackout because of magento.
Here is the problem:
I have here an array:
array(2) {
[0]=>
array(3) {
["product_name"]=>
string(12) "Test Product"
["product_qty"]=>
string(6) "2.0000"
["product_price"]=>
string(7) "15.0000"
}
[1]=>
array(3) {
["product_name"]=>
string(6) "Test 2"
["product_qty"]=>
string(6) "3.0000"
["product_price"]=>
string(7) "25.0000"
}
}
How can I make transform this to:
<input type="hidden" name="product1" value="Test Product" />
<input type="hidden" name="amount1" value="2" />
<input type="hidden" name="qty1" value="15" />
<input type="hidden" name="product2" value="Test 2" />
<input type="hidden" name="amount2" value="3" />
<input type="hidden" name="qty2" value="25" />
Thanks for your answer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
试试这个:
它会给你这样的结果:
这是一个演示:http://codepad.org/Eg2mejZH
Try this:
It will give you a result like this:
Here is a demo: http://codepad.org/Eg2mejZH
即使是简单的也应该包括适当的消毒。我们能举出的例子越多,说明如何正确地做到这一点,我们所有人的生活就越好。
Even the easy ones should include proper sanitizing. The more examples we can put out there of how to do this right, the better off we all are.
会给你
will give you
尝试这样:
转换成 HTML 代码
你好!
添加完整代码
try this way:
into HTML code
Greetings!
Add Full Code