我通讀了關於該主題的所有內容,但沒有爲我工作。我運行PHP 5.3.29。僅從根開始工作
我有這樣的PHP代碼,從根的作品,而不是從文件夾:
// Fetch latest poster
$base_url = 'posters';
$newest_mtime = 0;
if ($handle = opendir($base_url)) {
while (false !== ($latestFile = readdir($handle))) {
if (($latestFile != '.') && ($latestFile != '..')) {
$mtime = filemtime("$base_url/$latestFile");
if ($mtime > $newest_mtime) {
$newest_mtime = $mtime;
$show_file = "$base_url/$latestFile";
}
}
}
}
// Show latest poster
$show_name = basename(trim($show_file, ".jpg"));
echo '
<a href="/' . $show_file . '">
<img src="' . $show_file . '" class="jpg" width="150" alt="latest poster" title="' . $show_name . '">
</a>';
我很想只需添加一個斜線拿到根目錄相對路徑,但是,這並不工作, PHP。
這是這個問題的部位:
http://flamencopeko.net(這裏也沒有問題)
http://flamencopeko.net/disco_pages/sundays.php(這其中有問題)
'$ base_url = getcwd()。 '/海報';'? – Darren
謝謝。這也給了我http://home/flamenco/public_html/posters/08-05-2017_01.jpg。 –
哪個沒有解決問題。 –