目录

PHP symlink() 函数

❮ PHP 文件系统参考

示例

创建符号链接:

<?php
$target = "downloads.html";
$link = "downloads";
symlink($target, $link);
echo readlink($link);
?>


定义和用法

symlink() 函数使用指定名称链接从现有目标创建符号链接。

笔记:这不是 HTML 链接,而是文件系统中的链接。


语法

symlink( target, link)

参数值

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


技术细节

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

❮ PHP 文件系统参考