PHP,PDO fetchAll如何反序列化特定的行

时间:2016-03-22 02:34:31

标签: php pdo

作为标题,当我使用row['node_relation']

时,我使用php PDO连接如何反序列化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);

0 个答案:

没有答案