我在的foreach在PHP得到這個錯誤:腓的foreach錯誤無效參數
在...
代碼的foreach()提供的參數無效:
$database = new PDO('mysql:host=localhost;dbname=staff_tool', $user, '');
foreach ($database->query('SELECT id,firstname,lastname FROM `staff` SET categorie_bit = 0') as $testx) {
var_dump($testx);
}
編輯代碼:
foreach ($database->query('SELECT id,firstname,lastname,categorie_bit FROM `staff` WHERE categorie_bit = 1 SET categorie_bit = 0') as $testx) {
var_dump($testx);
}
並查詢返回任何東西? –
不只是警告信息 – as21
您的新PDO是否返回任何內容?因爲我看不到任何錯誤檢查... – Amarnasan