The readlink() function returns the target of the symbolic link. It returns the contents of the symbolic link path, otherwise it returns FALSE on error.
readlink(path)
path - The path of the symbolic link
The readlink() function returns the content of the symbolic link path. Returns FALSE on error.
<?php echo readlink('/netbeans); ?>
/execuatble/netbeans-8.2.0
The above is the detailed content of readlink() function in PHP. For more information, please follow other related articles on the PHP Chinese website!