我有一个查询,它会提取用户收藏夹列表并在页面上显示图像。我想要做的是,如果没有要显示的收藏夹来显示文件目录中的模板图像。
我试图这样做,但它会带来这个错误:
Warning: file_exists() expects parameter 1 to be string, resource given in /Applications/XAMPP/xamppfiles/htdocs/PTB1/includes/mod_favourites/favourites.php on line 28
Warning: mysql_fetch_array() expects parameter 1 to be resource, string given in /Applications/XAMPP/xamppfiles/htdocs/PTB1/includes/mod_favourites/favourites.php on line 33
我的下面的代码有人可以帮助我并告诉我如何做我想做的事情吗?
感谢。
<?php
$favorites_set_more = get_user_favorites_more();
if (!file_exists($favorites_set_more)) {
$favorites_set_more = "data/photos/0/_default.jpg";
}
while ($favorites2 = mysql_fetch_array($favorites_set_more)) {
echo "<a href=\"profile.php?id={$favorites2['favorite_id']}\"><img width=\"90px\" height=\"90px\" class=\"favorites_pic2\" src=\"data/photos/{$favorites2['favorite_id']}/_default.jpg\" /></a>";
?>
<? } ?>
这是favourites_set_more函数:
function get_user_favorites_more() {
global $connection;
global $_SESSION;
$query = "SELECT f.favorite_id, p.display_name
FROM ptb_favorites f, ptb_profiles p
WHERE f.user_id =".$_SESSION['user_id']."
AND p.user_id = f.user_id
LIMIT 4,12";
$favorites_set_more = mysql_query($query, $connection);
confirm_query($favorites_set_more);
return $favorites_set_more;
}
答案 0 :(得分:1)
如果您阅读了错误消息,则表示file_exists()
期待string
,但您提供resource
。所以你应该看看get_user_favorites_more()
正在返回什么。显然它不是string
。
如果未设置收藏夹,请确保您的get_user_favorites_more()
函数返回指向图片的不存在的链接,以便file_exists
函数返回false并显示默认图像。
当您查看get_user_favorites_more()
函数时,您将返回mysql_query($query, $connection)
的结果。这是resource
而不是string
。所以你不能做file_exists($favorites_set_more)
。您可以将其更改为:
<?php
//Get the favorites for the user
$favorites_set_more = get_user_favorites_more();
if (mysql_num_rows($favorites_set_more) == 0) {
echo "<img width=\"90px\" height=\"90px\" class=\"favorites_pic2\" src=\"data/photos/0/_default.jpg\" />";
}
else {
while ($favoriteImg = mysql_fetch_assoc($favorites_set_more)) {
echo "<a href=\"profile.php?id=" . $favoriteImg['favorite_id'] . "\">";
echo "<img width=\"90px\" height=\"90px\" class=\"favorites_pic2\" src=\"data/photos/" . $favoriteImg['favorite_id'] . "/_default.jpg\" />";
echo "</a>";
}
}
?>