(PHP 4, PHP 5, PHP 7)
link — 建立一个硬连接
$target
, string $link
)link() 建立一个硬连接。
target
要链接的目标。
link
链接的名称。
成功时返回 TRUE
, 或者在失败时返回 FALSE
。
Note: Windows下:该功能需要以 elevated 模式运行,或者关闭 UAC。
版本 | 说明 |
---|---|
5.3.0 | 该功能在 Windows 平台下开始有效(Vista、 Server 2008 或更高版本)。 |
Example #1 Creating a simple hard link
<?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);
?>
Note: 此函数不能作用于远程文件,被检查的文件必须是可通过服务器的文件系统访问的。