解析带有错误 json 的文本文件 - PHP

发布于 2025-01-17 07:42:50 字数 410 浏览 0 评论 0原文

我收到了一个格式错误的 json 文件,我必须使用 PHP 来解析它。

{timestamp":"2022-03-25 00:25:41.476+00","order_id":"1659616"}{timestamp":"2022-03-25 00:18:51.892+00","order_id":"1560808"}{timestamp":"2022-03-25 00:23:52.267+00","order_id":"1727305"}

我想使用:

foreach(file("abovefile.txt") as $line) {
    
}

问题是我没有新行。如何读取括号之间的内容,然后提取所有条目的时间戳和 order_id?

最好的方法是什么?

I was given a badly formatted json file and I have to parse it using PHP.

{timestamp":"2022-03-25 00:25:41.476+00","order_id":"1659616"}{timestamp":"2022-03-25 00:18:51.892+00","order_id":"1560808"}{timestamp":"2022-03-25 00:23:52.267+00","order_id":"1727305"}

I want to use:

foreach(file("abovefile.txt") as $line) {
    
}

The issue is I don't have a new line. How do I read in between the brackets and then extract timestamp and order_id for all entries?

What is the best way to do so?

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

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

发布评论

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

评论(1

节枝 2025-01-24 07:42:50

如果这是格式并且完全一样,您可以使用以下“过程”解决此问题:

$var = ''
foreach(file("abovefile.txt") as $line) {
    $var.= $line;
}
$var = '['.$var.']';
$var = str_replace('timestamp"', '"timestamp"', $var);
$var = str_replace('}{', '}, {', $var);

If this is the format and it's exactly like that, you can solve this with this "procedure":

$var = ''
foreach(file("abovefile.txt") as $line) {
    $var.= $line;
}
$var = '['.$var.']';
$var = str_replace('timestamp"', '"timestamp"', $var);
$var = str_replace('}{', '}, {', $var);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文