SplFileInfo::isLink
SplFileInfo::isLink
(PHP 5 >= 5.1.2, PHP 7)
SplFileInfo::isLink — Tells if the file is a link
Description
public bool SplFileInfo::isLink ( void )
Use this method to check if the file referenced by the SplFileInfo object is a link.
Parameters
This function has no parameters.
Return Values
Returns TRUE
if the file is a link, FALSE
otherwise.
Examples
Example #1 SplFileInfo::isLink() example
<?php
$info = new SplFileInfo('/path/to/symlink'
if ($info->isLink()) {
echo 'The real path is '.$info->getRealPath(
}
?>
See Also
- SplFileInfo::getRealPath() - Gets absolute path to file
← SplFileInfo::isFile
SplFileInfo::isReadable →
© 1997–2017 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.