PHP link 文件系统函数
-
定义和用法
link - 建立一个硬连接 -
版本支持
PHP4 PHP5 PHP7 支持 支持 支持 5.3.0 该功能在 Windows 平台下开始有效(Vista、 Server 2008 或更高版本)。
-
语法
link ( string $target , string $link )
link() 建立一个硬连接。 -
参数
参数 必需的 描述 target 是 要链接的目标。 link 是 链接的名称。 -
返回值
成功时返回 TRUE, 或者在失败时返回 FALSE。 -
示例
<?php $target = 'source.ext'; // This is the file that already exists $link = 'newfile.ext'; // This the filename that you want to link it to link($target, $link); ?>
注意: Windows下:该功能需要以 elevated 模式运行,或者关闭 UAC。
-