Sponsored Content
Full Discussion: What OS are you using?
Special Forums Windows & DOS: Issues & Discussions What OS are you using? Post 55772 by zazzybob on Sunday 19th of September 2004 04:33:08 PM
Old 09-19-2004
I think that this thread would be more suited to the "off-topic" forum.....

Anyway, at home I run SUSE 8.2 Professional (Linux) and Solaris 9 (i386). I also run many other Linux distros (and BSDs) via VMWare. I have one Windows XP box too.

At work, we have a heterogenous network of Windows 2000 machines (some running Cygwin), and SUSE 8.1/8.2. We also have a couple of Windows 2000 Servers and a HP-UX 10 box.

Cheers
ZB
 
SYMLINK(3)								 1								SYMLINK(3)

symlink - Creates a symbolic link

SYNOPSIS
bool symlink (string $target, string $link) DESCRIPTION
symlink(3) creates a symbolic link to the existing $target with the specified name $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 Create a symbolic link <?php $target = 'uploads.php'; $link = 'uploads'; symlink($target, $link); echo readlink($link); ?> NOTES
Note Windows users should note that this function will only work if the system you run PHP from is Windows Vista/Windows Server 2008 or newer. Windows versions prior to that do not support symbolic links. SEE ALSO
link(3), readlink(3), linkinfo(3). PHP Documentation Group SYMLINK(3)
All times are GMT -4. The time now is 08:53 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy