我正在使用以下代码来显示缩略图库。此代码取自另一个 stackoverflow 问题
$count=0;
$arr=array('a', 'b', 'c', 'd');
while ($row = mysqli_fetch_array($query)) {
$img = $row["fn"];
if (empty($img)) { break; }
$thumb = 'images/th_'.$img;
if ($count == 8) { break; }
$i=$arr[$count%4];
$ths.='<div class="ui-block-'.$i.'"><img src="'.$thumb.'"></div>';
$count++;
};
我不明白 $row["fn"]; 我在谷歌找不到任何东西。“fn”是格式化字符的一部分(例如 \n)吗?对于这样一个基本问题,我很抱歉,但我真的无法在其他地方找到答案,我一直在寻找两个小时。