📜  如何在 php 代码示例中使用 pdo 获取数据

📅  最后修改于: 2022-03-11 14:53:59.590000             🧑  作者: Mango

代码示例2
$stmt = $pdo->prepare("SELECT * FROM users LIMIT :limit, :offset");$stmt->execute(['limit' => $limit, 'offset' => $offset]); $data = $stmt->fetchAll();// and somewhere later:foreach ($data as $row) {    echo $row['name']."\n";}