PHP使用explode从数据库中提取属性
我正在寻找从 MySQL 字段中提取一些数据的最佳方法,但每次都失败。所以我来了...
我在数据库中得到了一些数据,如下所示:“attribute1=0::attribute2=1::attribute3=5 .. 等等”。
现在我需要获取该数据,以便我可以像这样使用它:
foreach($xxx as $attributeName => $attributeValue)
echo $attributeName . ' = ' . $attributeValue;
所以上面将打印 smg 如下;
属性1 = 0 属性2 = 1 ...等等。
希望您理解并帮助我解决这个问题。 先感谢您。
I'm searching the best way to withdraw some data from my MySQL field by I fail everytime. So here I come...
I got some data in my db which looks following: "attribute1=0::attribute2=1::attribute3=5 .. etc.".
Now I need to get that data so I can use it like this:
foreach($xxx as $attributeName => $attributeValue)
echo $attributeName . ' = ' . $attributeValue;
So the above will print smg like;
attribute1 = 0
attribute2 = 1
... etc.
Hope you understand and help me out with this.
Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
所以这就是你要做的:
它将打印:
祝你好运!
So here is what you do:
it will print:
Good Luck!