(PHP 4, PHP 5)
link — 建立一个硬连接
$target
, string $link
)
link() 建立一个硬连接。成功时返回 TRUE
, 或者在失败时返回 FALSE
.
Note: 此函数不能作用于远程文件,被检查的文件必须是可通过服务器的文件系统访问的。
参见 symlink() 来建立软连接,以及 readlink() 和 linkinfo()。
target
Target of the link.
link
The link name.
成功时返回 TRUE
, 或者在失败时返回 FALSE
.
Note: For Windows only: This function requires PHP to run in an elevated mode or with the UAC disabled.
版本 | 说明 |
---|---|
5.3.0 | This function is now available on Windows platforms (Vista, Server 2008 or greater). |
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: 此函数不能作用于远程文件,被检查的文件必须是可通过服务器的文件系统访问的。