目录

PHP link() 函数

❮ PHP 文件系统参考

示例

创建硬链接:

<?php
$target = "text.txt";
$linkname = "mylink";

link($target, $linkname);
?>


定义和用法

link() 函数创建硬链接。

语法

link( target, link)

参数值

Parameter Description
target Required. Specifies the target
link Required. Specifies the name of the link


技术细节

返回值: TRUE 成功,FALSE 失败
PHP 版本: 4.0+
PHP 变更日志: PHP 5.3.0:现在可在 Windows 平台上使用

❮ PHP 文件系统参考