(PHP 4, PHP 5)
link — Create a hard link
link() creates a hard link.
Target of the link.
The link name.
Returns TRUE on success or FALSE on failure.
Version | Description |
---|---|
5.3.0 | This function is now available on Windows platforms. |
Example #1 Creating a simple hard link
<?php
$source = 'source.ext'; // This is the file that already exists
$dest = 'newfile.ext'; // This the filename that you want to link it to
link($source, $dest);
?>
Note: This function will not work on remote files as the file to be examined must be accessible via the server's filesystem.