PHP/File Directory/readlink
Версия от 10:37, 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;
?>