sql >> Database teknologi >  >> RDS >> Mysql

Trækker data fra MySQL ind i json-array

Hvis du ville gøre dette med PDO, så er her et eksempel:

<?php 
$dbh = new PDO("mysql:host=localhost;dbname=DBNAME", $username, $password);

$sql = "SELECT `id`, `title`, `time`, `start`, `backgroundColor` 
        FROM my_table";

$result = $dbh->query($sql)->fetchAll(PDO::FETCH_ASSOC);
//To output as-is json data result
//header('Content-type: application/json');
//echo json_encode($result);

//Or if you need to edit/manipulate the result before output
$return = [];
foreach ($result as $row) {
    $return[] = [ 
        'id' => $row['id'],
        'title' => $row['title'],
        'start' => $row['start'].' '.$row['time'],
        'backgroundColor' => $row['backgroundColor']
    ];
}
$dbh = null;

header('Content-type: application/json');
echo json_encode($return);
?>


  1. En guide til Pgpool til PostgreSQL:del 1

  2. C# - Sådan får du oracle long råtypeværdi

  3. Sådan finder du alle afhængigheder af en tabel i sql server

  4. CakePHP / Mysql Indsæt UTF-8