<?php
$server = $_SERVER["SERVER_NAME"];
$pathpath = realpath("../../files/uploaded_file.jpg");
echo "You can link to the file using the following link... $server$pathpath";
?>
不幸的是,这会产生以下...
www.example.com/home/fhlinux123/g/example.com/user/htdocs/ninja/base/files/1.doc
而我所追求的是如下......
www.example.com/files/uploaded_file.jpg
我不能假设文件夹“文件”总是在同一个目录中。