标签: php pdo
对于此查询: $sql='select col from table where other_col=?';
$sql='select col from table where other_col=?';
我目前正在获取返回的数据,如下所示: $data=$statement->fetch()['col'];
$data=$statement->fetch()['col'];
对我来说这看起来不太好。 是否有更好的方法可以做到这一点,还是那么好?
答案 0 :(得分:13)
您可以尝试:
$data=$statement->fetchColumn(0);