我必须解码json数据并将其插入数据库。
我的代码:
include 'db.php';
$jsonString = file_get_contents('../question.json');
$data = json_decode($jsonString, true);
$x=1;
foreach ($data as $key1 => $val1) {
和e错误: 在第6行的/includes/php/transfer.php中为foreach()提供的参数无效
foreach是我的第六行代码。
我不明白。.问题在哪里?