(PHP 4, PHP 5, PHP 7, PHP 8)
link — 建立一個(gè)硬連接
$target
, string $link
): boollink() 建立一個(gè)硬連接。
target
要鏈接的目標(biāo)。
link
鏈接的名稱。
成功時(shí)返回 true
, 或者在失敗時(shí)返回 false
。
注意: Windows下:該功能需要以 elevated 模式運(yùn)行,或者關(guān)閉 UAC。
版本 | 說明 |
---|---|
5.3.0 | 該功能在 Windows 平臺(tái)下開始有效(Vista、 Server 2008 或更高版本)。 |
示例 #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);
?>
注意: 此函數(shù)不能作用于遠(yuǎn)程文件,被檢查的文件必須是可通過服務(wù)器的文件系統(tǒng)訪問的。