ディレクトリにfile_existがあるかどうかを調べようとしています。そうでない場合は、別の画像を使用したいと思います。しかし、私はfile_exists関数を使用しているので、常にfalseを返します。
私が使用したコードは
while($r=mysql_fetch_row($res))
{
if(!file_exists('http://localhost/dropbox/lib/admin/'.$r[5]))
{
$file='http://localhost/dropbox/lib/admin/images/noimage.gif';
}
else
$file='http://localhost/dropbox/lib/admin/'.$r[5];}
ただし、ファイルが終了しても、関数は常にfalseを返します。使って確認しました
<img src="<?php echo 'http://localhost/dropbox/lib/admin/'.$r[5]; ?>" />
これにより、画像が正しく表示されました。
誰か助けてください