readlink
Return the target of the symbolic link
readlink()
function returns the target pointed to by the symbolic connection.
If successful, the function returns the connection target. If it fails, return false.
<?php echo readlink ( "/user/testlink" ) ; ?>
readlink ( linkpath )
parameter | describe |
---|---|
linkpath | Required. Specify the connection path to be checked. |