Unix and Linux Discussions Tagged with link |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
14,411 |
What is on Your Mind? |
|
|
|
3 |
4,262 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
25,809 |
Solaris |
|
|
|
5 |
6,809 |
Solaris |
|
|
|
0 |
4,293 |
Shell Programming and Scripting |
|
|
|
10 |
8,498 |
Solaris |
|
|
|
1 |
4,125 |
Solaris |
|
|
|
0 |
10,507 |
Open Source |
|
|
|
2 |
8,775 |
HP-UX |
|
|
|
0 |
3,602 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
5,843 |
UNIX for Dummies Questions & Answers |
|
|
|
12 |
5,007 |
Shell Programming and Scripting |
|
|
|
8 |
19,815 |
Shell Programming and Scripting |
|
|
|
4 |
4,128 |
Shell Programming and Scripting |
|
|
|
6 |
7,413 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
14,703 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
4,548 |
High Performance Computing |
|
|
|
0 |
1,631 |
Software Releases - RSS News |
|
|
|
0 |
1,179 |
Software Releases - RSS News |
|
|
|
0 |
2,064 |
Solaris BigAdmin RSS |
|
|
|
2 |
8,628 |
Filesystems, Disks and Memory |
|
|
|
0 |
1,553 |
Software Releases - RSS News |
|
|
|
3 |
2,852 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
1,998 |
Complex Event Processing RSS News |
|
|
|
2 |
11,696 |
Web Development |
|
|
|
0 |
1,497 |
Software Releases - RSS News |
|
|
|
0 |
2,537 |
OS X Support RSS |
|
|
|
1 |
4,790 |
IP Networking |
|
|
|
0 |
1,284 |
Software Releases - RSS News |
|
|
|
2 |
2,922 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
4,592 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
4,034 |
BSD |
|
|
|
4 |
2,470 |
Solaris |
|
|
|
0 |
1,351 |
Software Releases - RSS News |
|
|
|
1 |
4,103 |
OS X (Apple) |
|
|
|
0 |
4,877 |
Solaris BigAdmin RSS |
|
|
|
5 |
373,156 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
4,982 |
Linux |
|
|
|
0 |
1,172 |
Software Releases - RSS News |
|
|
|
6 |
9,487 |
Programming |
LINK(3) 1 LINK(3)
link - Create a hard link
SYNOPSIS
bool link (string $target, string $link)
DESCRIPTION
link(3) creates a hard link.
PARAMETERS
o $target
- Target of the link.
o $link
- The link name.
RETURN VALUES
Returns TRUE on success or FALSE on failure.
CHANGELOG
+--------+---------------------------------------------------+
|Version | |
| | |
| | Description |
| | |
+--------+---------------------------------------------------+
| 5.3.0 | |
| | |
| | This function is now available on Windows plat- |
| | forms (Vista, Server 2008 or greater). |
| | |
+--------+---------------------------------------------------+
EXAMPLES
Example #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);
?>
NOTES
Note
This function will not work on remote files as the file to be examined must be accessible via the server's filesystem.
Note
For Windows only: This function requires PHP to run in an elevated mode or with the UAC disabled.
SEE ALSO
symlink(3), readlink(3), linkinfo(3).
PHP Documentation Group LINK(3)