PHP/File Directory/realpath

Материал из Web эксперт
Перейти к: навигация, поиск

Cleaning up a file name with realpath()

 
$filename = realpath("/usr/local/data/$_POST[user]");
if ("/usr/local/data/" == substr($filename, 0, 16)) {
    print "User profile for " . htmlentities($_POST["user"]) .": <br/>";
    print file_get_contents($filename);
} else {
    print "Invalid user entered.";
}



realpath.php

 
<?php
     $imgPath = "../cover.gif";
     $absolutePath = realpath($imgPath); 
     echo $absolutePath;
?>