作为标题,当我使用row['node_relation']
fetchAll(PDO::FETCH_ASSOC)
行
这是DB中的数据:
arrow_sn | x1 | x2 | y1 | y2 | node_relation
830 | 365| 334| 545| 389| s:11:"1-A-1,2-A-2";
以下是代码:
$nodesData = $dbh->prepare("SELECT * FROM map_node");
$nodesData->execute();
$row = $nodesData -> fetchAll(PDO::FETCH_ASSOC);
echo json_encode($row);