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

Dati PHP mySql su file JSON

Puoi usare json_encode funzione.

  1. Recupera i dati da db e assegnali a un array
  2. Quindi usa json_encode($result_array) . Questo produrrà il risultato json. Fai clic qui
  3. Usa file_put_contents funzione per salvare il risultato json nel tuo file .json

Di seguito è riportato un codice di esempio,

$result = mysql_query(your sql here);    
$data = array();
while ($row = mysql_fetch_assoc($result)) {
    // Generate the output in desired format
    $data = array(
        'cols' => ....
        'rows' => ....
        'p' => ...
    );
}

$json_data = json_encode($data);
file_put_contents('your_json_file.json', $json_data);