<?php $text = '{ "time":20211101, "data":" [[1630454700,0.01823,0.01823,0.01823,0.01823,5366.009589], [1630461840,0.01876,0.01877,0.01876,0.01877,5713.905167], [1630462080,0.01877,0.01877,0.01877,0.01877,1039.957378], [1630477560,0.01777,0.01776,0.01778,0.01779,1000.000000]]" }'; $parsed = json_decode($text, true); $data = json_decode($parsed['data'], true); foreach ($data as $i => $row) { foreach ($row as $j => $val) { echo("$val | "); } echo("\n"); }
You have javascript disabled. You will not be able to edit any code.