आपके जेसन डेटा में शीर्ष स्तरीय कुंजी 'एक्टी' है, इसलिए आपको $my_arr->Actie
के माध्यम से लूपिंग करने की आवश्यकता है ।
आप अपने कोड को सरल बना सकते हैं:
$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);
}