Sponsored Content
The Lounge What is on Your Mind? 'Hats Off' badge of honour to Neo... Post 303028116 by Neo on Monday 31st of December 2018 08:10:01 AM
Old 12-31-2018
Thanks!

But no thanks! I don't need any special badges this year, but thanks anyway.

Still have a long way to go to bring this site "out of legacy" and "into the now" ... Smilie

Keep up the good work answering questions, a positive attitude, passion for the site, and helping others, that's the best "badge" for me.

Thanks again.
These 3 Users Gave Thanks to Neo For This Post:
 

We Also Found This Discussion For You

1. What is on Your Mind?

Disabling New Badge Notifications

Finally got around to this. Have added a UserCP option to disable "new badge" alerts in the user profile "options" area so anyone who finds the alerts annoying, feel free to disable them (since the are primary designed for new users): https://www.unix.com/members/1-albums215-picture1219.png ... (0 Replies)
Discussion started by: Neo
0 Replies
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)
All times are GMT -4. The time now is 03:19 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy