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

Analisi di JSON su tabella MySQL

I tuoi dati json hanno la chiave di livello superiore 'Actie', quindi devi scorrere $my_arr->Actie .

Puoi semplificare il tuo codice solo per:

$actieurl = "http://creative3s.com/thomas/nmdad/actie.json";
$my_arr = json_decode(file_get_contents($actieurl));

$db = new Zend_Db_Adapter_Pdo_Mysql(array(
    'host' => 'localhost',
    'username' => 'root',
    'password' => NULL,
    'dbname' => 'zf-tutorial'
));

foreach($my_arr->Actie as $row){
    $db->insert('testerdetest', (array)$row);
}