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

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

Текущая версия на 07:04, 26 мая 2010

readlink( ) function takes a link name as its only parameter and returns the target that the link points to.

 
<?
    $target = readlink("/home/andrew/myfile.txt");
    print $target;
?>