php realpath kullanılabilir sonuçları üretmek değil

0 Cevap php
<?php
    $server = $_SERVER["SERVER_NAME"];
    $pathpath = realpath("../../files/uploaded_file.jpg");
    echo "You can link to the file using the following link... $server$pathpath";
?>

Ne yazık ki bu aşağıdaki üretir ...

www.example.com/home/fhlinux123/g/example.com/user/htdocs/ninja/base/files/1.doc

Aşağıdaki gibi ne Sonra ben ise ...

www.example.com/files/uploaded_file.jpg

Ben klasör 'dosya' hep aynı dizinde olacağını kabul edemeyiz.

0 Cevap