我在這裏使用file_exist得到了一個代碼。它會檢查目錄中是否存在.txt和.jpg文件。然後將它們顯示在警告框中。它適用於.txt,但不適用於.jpg。它顯示圖像源而不是圖像本身。我在這裏做錯了什麼?你能給我一些幫助嗎?非常感謝提前!這是我的代碼。file_exist顯示圖像路徑而不是.jpg
的search.php
<?php
class Model
{
public function readexisting()
{
if(
file_exists($_SERVER['DOCUMENT_ROOT']."/Alchemy/events/folder-01/event-01.txt")
&&
file_exists($_SERVER['DOCUMENT_ROOT']."/Alchemy/events/folder-01/event-01.jpg")
)
{
$myPic = "/Alchemy/ajax/events/folder-01/event-01.jpg";
echo $myPic;
$myFile = ($_SERVER['DOCUMENT_ROOT'] . "/Alchemy/events/folder-01/event-01.txt");
$fh = fopen($myFile, 'r');
$theData = fread($fh, filesize($myFile));
fclose($fh);
echo $theData ;
}
else
{
echo "The file $myFile does not exist";
}
}
}
?>
如果您有答案,請將答案標記爲正確。這樣您可以幫助其他人節省時間並幫助社區中的其他人。 –
嗨!我試過你編輯的代碼,但仍然得到「/Alchemy/ajax/events/folder-01/event-01.jpg」而不是.jpg文件。你有什麼其他的建議?謝謝 – Kaye
請在下面閱讀此評論。有三個人(包括我)給你答案。你添加了標題內容類型嗎? –