array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'zh', ), 'this' => array ( 0 => 'splfileinfo.getlinktarget.php', 1 => 'SplFileInfo::getLinkTarget', 2 => 'Gets the target of a link', ), 'up' => array ( 0 => 'class.splfileinfo.php', 1 => 'SplFileInfo', ), 'prev' => array ( 0 => 'splfileinfo.getinode.php', 1 => 'SplFileInfo::getInode', ), 'next' => array ( 0 => 'splfileinfo.getmtime.php', 1 => 'SplFileInfo::getMTime', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/spl/splfileinfo/getlinktarget.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 5 >= 5.2.2, PHP 7, PHP 8)
SplFileInfo::getLinkTarget — Gets the target of a link
Gets the target of a filesystem link.
注意:
The target may not be the real path on the filesystem. Use SplFileInfo::getRealPath() to determine the true path on the filesystem.
此函数没有参数。
   Returns the target of the filesystem link on success, or false on failure.
  
Throws RuntimeException on error.
示例 #1 SplFileInfo::getLinkTarget() example
<?php
$info = new SplFileInfo('/Users/bbieber/workspace');
if ($info->isLink()) {
    var_dump($info->getLinkTarget());
    var_dump($info->getRealPath());
}
?>以上示例的输出类似于:
string(19) "Documents/workspace" string(34) "/Users/bbieber/Documents/workspace"