PHP/File Directory/readlink — различия между версиями
Admin (обсуждение | вклад) м (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;
?>