我无法解决
的问题 "Catchable fatal error: Object of class mysqli_result could not be converted to string."
我有3张桌子:照片(photo_id,photo_filename,photo_caption),标签(tag_id,tag_title)
其中tag_title是唯一的,photos_tags(photo_id,tag_id)。
用户可以添加描述照片的标签(他可以插入任意数量的标签,用逗号分隔)。对于每个标签,我想检查它是否已经存在,以便我可以避免表photos_tags中的重复。它适用于桌面照片和标签,但我无法填写表photos_tags。 任何帮助将不胜感激。
$tags = $tag_title;
$e = explode(',', $tags);
foreach($e as $value) //for every tag
{
$q_photo_id = mysqli_query($con, "SELECT photo_id FROM photos WHERE
(photo_filename ='$photo_filename' AND photo_caption = '$photo_caption')");
$photo_id = mysqli_fetch_array($q_photo_id);
$sql4 = mysqli_query($con, "INSERT IGNORE INTO tags (tag_title) VALUES ('$value')");
if (mysqli_insert_id($con)) {
$q_tag_id = mysqli_query($con, "SELECT tag_id FROM tags WHERE ('tag_title' = '$value')");
$tag_id = mysqli_fetch_array($q_tag_id);
}
else { //if the tag already exist
$q_tag_id = mysqli_query($con, "SELECT tag_id FROM tags WHERE ('tag_title' = '$value')");
$tag_id = mysqli_fetch_array($q_tag_id);
}
// insert into photos_tags
$sql6 = mysqli_query($con, "INSERT INTO photos_tags (photo_id, tag_id) VALUES ('$photo_id', '$tag_id')");
}
}
答案 0 :(得分:1)
我无法理解为什么调试这个问题。您应该插入字符串或可以强制转换为字符串的内容。您在这里使用的$q_photo_id
和$q_tag_id
都是mysqli_result
个对象。它们不能被强制转换为字符串,而PHP正确地抱怨它们。您应该使用$photo_id[0]
和$tag[0]
代替