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

JSON koder MySQL-resultater

$sth = mysqli_query($conn, "SELECT ...");
$rows = array();
while($r = mysqli_fetch_assoc($sth)) {
    $rows[] = $r;
}
print json_encode($rows);

Funktionen json_encode har brug for PHP>=5.2 og php-json pakke - som nævnt her

BEMÆRK :mysql er forældet fra og med PHP 5.5.0, brug mysqli udvidelse i stedet http://php.net/manual/en/migration55.deprecated.php .



  1. Benchmarking Postgres-XL

  2. Indstilling af Active Data Guard Physical Standby i RAC One Node Architecture – Del 2

  3. Sådan fungerer FIND_IN_SET() i MariaDB

  4. Standard rækkefølge i SELECT-forespørgsel - SQL Server 2008 vs SQL 2012