PHP/File Directory/realpath — различия между версиями

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

Версия 10:37, 26 мая 2010

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;
?>