PHP使用explode从数据库中提取属性

发布于 2024-11-29 23:17:04 字数 373 浏览 3 评论 0原文

我正在寻找从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

等待我真够勒 2024-12-06 23:17:04
$final = array();
$str =  "attribute1=0::attribute2=1::attribute3=5";
$pairs = explode('::', $str);

foreach ($pairs as $pair)
{
    $keyValue = explode('=', $pair);
    $final[$keyValue[0]] = $keyValue[1];

}

print_r($final);
$final = array();
$str =  "attribute1=0::attribute2=1::attribute3=5";
$pairs = explode('::', $str);

foreach ($pairs as $pair)
{
    $keyValue = explode('=', $pair);
    $final[$keyValue[0]] = $keyValue[1];

}

print_r($final);
枫林﹌晚霞¤ 2024-12-06 23:17:04

所以这就是你要做的:

$data = 'attribute1=0::attribute2=1::attribute3=5';

$data_tree = explode("::", $data);
foreach($data_tree as $node)
{
    list($field,$value) = explode('=',$node);
    echo $field.' : '.$value.'<br/>';
}

它将打印:

<前><代码>属性1:0
属性2:1
属性3:5

祝你好运!

So here is what you do:

$data = 'attribute1=0::attribute2=1::attribute3=5';

$data_tree = explode("::", $data);
foreach($data_tree as $node)
{
    list($field,$value) = explode('=',$node);
    echo $field.' : '.$value.'<br/>';
}

it will print:

attribute1 : 0
attribute2 : 1
attribute3 : 5

Good Luck!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文