我需要通过ID(允许重复的托管)在表格中选择一些图像。
我的主要代码:
...
$selectedImages = $this->selectImages($selectedNews['ID'][$i]);
//Check values
echo 'Count of Array: '.sizeof($selectedImages)."\n";
if (sizeof($selectedImages) == 0) {
$this->html[] = '-';
} else {
for ($j = 0; $j < sizeof($selectedImages); $j++) {
$this->html[] = '<a class="fancybox single_image" href="/'.$selectedImages['Path'][$j].$selectedImages['Name'][$j].'"><img src="thumbnail/thumb.php?src=../../'.$selectedImages['Path'][$j].$selectedImages['Name'][$j].'&h=50&w=50" alt="'.$selectedImages['Name'][$j].'" /></a>';
}
}
...
这是我的方法:
private function selectImages($id) {
$selectedImages = array();
$sql = "SELECT
Name,
Path
FROM
News_images
WHERE
Pos = '".mysqli_real_escape_string($this->db, $id)."'
";
$stmt = $this->db->prepare($sql);
if (!$result = $this->db->query($sql)) {
echo 'Datenbankfehler\n';
echo $this->db->error;
}
$i = 0;
while ($row = $result->fetch_assoc()) {
$selectedImages['Path'][$i] = $row['Path'];
$selectedImages['Name'][$i] = $row['Name'];
$i++;
}
echo 'Selected: '.$i.' images ,';
return $selectedImages;
}
我得到以下输出: 选择1张图片,数组计数:2 选择0图像,数组计数:0 选择4张图片,数组计数:2
所选图像的实际数量是正确的。但是Array的计数与实际选择的计数不匹配。
这里的问题是什么?
答案 0 :(得分:1)
sizeof($selectedImages);
会给你2
,因为它实际上包含两个元素:'路径'和'名称'。使用:
sizeof($selectedImages['Path']) ...
或
sizeof($selectedImages['Name']) ...
尊重您当前的数组结构。
顺便说一下:像下面这样的数组结构不会更好吗? ;)
$selectedImages = array (
array('Path' => '...', 'Name' => '...'),
array('Path' => '...', 'Name' => '...'),
....
);
要实现这一点,您只需简化您的mysql获取代码:
$selectedImages = array();
while ($row = $result->fetch_assoc()) {
$selectedImages[] = $row;
}