link
link
(PHP 4, PHP 5, PHP 7)
链接 - 创建一个硬链接
描述
bool link ( string $target , string $link )
link()
创建一个硬链接。
参数
target
链接的目标。
link
链接名称。
返回值
TRUE
成功或FALSE
失败时返回。
更新日志
版 | 描述 |
---|---|
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
?>
注意
注意
:此功能在远程文件上不起作用,因为要检查的文件必须可通过服务器的文件系统访问。
注意
:仅适用于Windows:此功能要求PHP以提升模式运行或禁用UAC。