php 爆炸帮助

发布于 2024-12-06 16:02:19 字数 400 浏览 0 评论 0原文

我有一个来自文本区域的数据集,

P234324, 2011-03-23 12:34:37 \nP234434, 2011-03-23 13:34:36 \nP438794, 2011-03-23 14:34:36 \nP238924, 2011-03-23 15:34:36 \n

我想将其分解为这个,但是多个 foreach 使我困惑。

$data['P234324'] = "2011-03-23 12:34:37"
$data['P234434'] = "2011-03-23 13:34:36"
$data['P438794'] = "2011-03-23 14:34:36"
$data['P238924'] = "2011-03-23 15:34:36"

I have this data set from a textarea

P234324, 2011-03-23 12:34:37 \nP234434, 2011-03-23 13:34:36 \nP438794, 2011-03-23 14:34:36 \nP238924, 2011-03-23 15:34:36 \n

I would like to explode it to this, but the multiple foreach is throwing me.

$data['P234324'] = "2011-03-23 12:34:37"
$data['P234434'] = "2011-03-23 13:34:36"
$data['P438794'] = "2011-03-23 14:34:36"
$data['P238924'] = "2011-03-23 15:34:36"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

不必在意 2024-12-13 16:02:19

这将起作用:

$old_data = ...; //your string
$data = array();

$pairs = explode("\n", rtrim($old_data, "\n"));
foreach($pairs as $pair) {
   $components = explode(',', $pair);
   $data[$components[0]] = trim($components[1]);
}

键盘示例

This will work:

$old_data = ...; //your string
$data = array();

$pairs = explode("\n", rtrim($old_data, "\n"));
foreach($pairs as $pair) {
   $components = explode(',', $pair);
   $data[$components[0]] = trim($components[1]);
}

codepad example

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