PHP |链接()函数
link() 为指定目标创建硬链接。目标和链接作为参数传递给 link()函数,成功时返回 true,失败时返回 false。
句法:
link(target, link)
Parameters Used:
The link() function in PHP accepts two parameters.
- target : It is a mandatory parameter which specifies the target.
- link : It is an mandatory parameter which specifies the name of the link.
Return Value:
It returns TRUE on success or FALSE on failure.
错误和异常
- link()函数不适用于远程文件,因为要检查的文件必须可以通过服务器的文件系统访问。
- link()函数创建的链接不是 HTML 链接,而是文件系统中的链接。
- 在 linux 中,不允许硬链接到目录。
例子:
Input : $targetfile = 'gfg.txt.';
$linkname = 'gfglink';
link($targetfile, $linkname);
Output : 1
Input : $targetfile = 'gfg.txt.';
$linkname = 'gfglink';
if(!link($targetfile, $linkname))
{
echo('Link has been created!');
}
else
{
echo('Link cannot be created!');
}
Output : Link has been created!
下面的程序说明了 link()函数。
程序 1
php
php
输出:
1
节目二
PHP
输出:
Link has been created!
相关文章: PHP |符号链接()函数
参考:
PHP 。 PHP