PHP | link( ) Function Last Updated : 11 Jul, 2025 Comments Improve Suggest changes Like Article Like Report The link() creates a hard link for a specified target. The target and the link are passed as parameters to the link() function and it returns true on success and false on failure.Syntax: 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. Errors And Exception The link() function does not work on remote files as the file to be examined must be accessible via the server's filesystem.The link created by the link() function is not an HTML link, but a link in the filesystem..In linux, hardlinking to a directory is not permitted. Examples: 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! Below programs illustrate the link() function.Program 1 php <?php // target file $targetfile = 'gfg.txt'; // name of the link $linkname = 'gfglink'; // creating a symbolic link for the target file link($targetfile, $linkname); ?> Output: 1 Program 2 php <?php // target file $targetfile = 'gfg.txt'; // name of the link $linkname = 'gfglink'; // creating a symbolic link for the target file if(!link($targetfile, $linkname)) { echo('Link has been created!'); } else { echo('Link cannot be created!'); } ?> Output: Link has been created! Related Article: PHP | symlink( ) functionReference: https://www.php.net/manual/en/function.link.php Create Quiz Comment S Shubrodeep Banerjee Follow 0 Improve S Shubrodeep Banerjee Follow 0 Improve Article Tags : Misc Web Technologies PHP PHP-file-handling PHP-function +1 More Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions6 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like