为foreach()错误提供的参数无效
您好,我的网站上存在以下问题,当我检查文件“error_log”时,这个em显示以下错误:
“为/ home / ...中的foreach()提供的参数无效”
位于错误位置:
<?php
foreach ($on['result'] as $val) { ?>
<a href="#" onClick="goToProfile(<?= $val['id'];?>)"><li class="chat__human" style="margin-bottom: 5px;">
<img class="chat__avatar" style="padding: 1px;margin:3px" src="<?= $val['photo'];?>" alt="" />
<span class="chat__name comforta" style="position: absolute;margin-left:5px;margin-top: 5px;font-weight: bold"><?= $val['firstName'];?></span>
<span class="chat__last_m" style="position: absolute;margin-left:5px;margin-top: 23px;color:#999"> <?= $val['last_m'];?></span>
</li></a>
<?php } ?>
我希望你能帮我解决这个错误,谢谢你。