我有下面的代碼,但是,我在我的代碼中出現錯誤。 我找不到問題,但我認爲它來自: UserManagement :: findByUsername($ username);無效的參數foreach()
$a_allSections = UserManagement::findByUsername($username);
if($a_allSections)
{
foreach($a_allSections as $a_section)
{
echo $a_section['name'];?>
}
}
else
{
echo 'There's nothing found.' . "\n";
}
什麼類型是你的'$ a_allSections'這樣的錯誤? – hsz 2012-03-01 10:30:40
更好的檢查可能是'if(is_array($ a_allSections))' – 2012-03-01 10:30:51
@andreas,返回的對象可以是包含迭代器的對象。 – hsz 2012-03-01 10:31:56