Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

unlink(3) [php man page]

UNLINK(3)								 1								 UNLINK(3)

unlink - Deletes a file

SYNOPSIS
bool unlink (string $filename, [resource $context]) DESCRIPTION
Deletes $filename. Similar to the Unix C unlink() function. An E_WARNING level error will be generated on failure. PARAMETERS
o $filename - Path to the file. o $context - Note Context support was added with PHP 5.0.0. For a description of contexts, refer to "Streams". RETURN VALUES
Returns TRUE on success or FALSE on failure. CHANGELOG
+--------+---------------------------------------------------+ |Version | | | | | | | Description | | | | +--------+---------------------------------------------------+ | 5.0.0 | | | | | | | As of PHP 5.0.0 unlink(3) can also be used with | | | some URL wrappers. Refer to "Supported Protocols | | | and Wrappers" for a listing of which wrappers | | | support unlink(3). | | | | +--------+---------------------------------------------------+ EXAMPLES
Example #1 Basic unlink(3) usage <?php $fh = fopen('test.html', 'a'); fwrite($fh, '<h1>Hello world!</h1>'); fclose($fh); unlink('test.html'); ?> SEE ALSO
rmdir(3). PHP Documentation Group UNLINK(3)

Check Out this Related Man Page

IS_WRITABLE(3)								 1							    IS_WRITABLE(3)

is_writable - Tells whether the filename is writable

SYNOPSIS
bool is_writable (string $filename) DESCRIPTION
Returns TRUE if the $filename exists and is writable. The filename argument may be a directory name allowing you to check if a directory is writable. Keep in mind that PHP may be accessing the file as the user id that the web server runs as (often 'nobody'). Safe mode limitations are not taken into account. PARAMETERS
o $filename - The filename being checked. RETURN VALUES
Returns TRUE if the $filename exists and is writable. EXAMPLES
Example #1 is_writable(3) example <?php $filename = 'test.txt'; if (is_writable($filename)) { echo 'The file is writable'; } else { echo 'The file is not writable'; } ?> ERRORS
/EXCEPTIONS Upon failure, an E_WARNING is emitted. NOTES
Note The results of this function are cached. See clearstatcache(3) for more details. Tip As of PHP 5.0.0, this function can also be used with some URL wrappers. Refer to "Supported Protocols and Wrappers" to determine which wrappers support stat(3) family of functionality. SEE ALSO
is_readable(3), file_exists(3), fwrite(3). PHP Documentation Group IS_WRITABLE(3)
Man Page

4 More Discussions You Might Find Interesting

1. Cybersecurity

TCP Wrappers

I have installed TCP wrappers , Good package ... I have a problem with the hosts_options part ... I am not able to use the twist command .. It just dosent respond I have compiled wrappers 7.6 for Solaris 8 with ipv6 support ... Everything works fine except the twist doesnt work I have... (1 Reply)
Discussion started by: DPAI
1 Replies

2. Programming

What does unlink"tmep.log" do?

Hi, I saw this C program on Unix with unlink("tmp.log"); unlink("time.log"); at the end of the file. What's the purpose of doing this? Thanks a lot! (1 Reply)
Discussion started by: whatisthis
1 Replies

3. Shell Programming and Scripting

perl unlink question

Hi, I have a two lines of code both intend to perform the same task. unlink $CtrFile; system ("rm $CtrFile"); Both of which try to delete a certain file. However when I use the unlink command the file does not get deleted. When I use the "rm" system... (2 Replies)
Discussion started by: jerardfjay
2 Replies

4. Shell Programming and Scripting

Unlink multiple files

I wish to unlink multiple links, but man pages shows unlink - call the unlink function to remove the specified file let's linked are in number sequence and I'm doing unlink `echo {1..500}` This fails.. Is their any other command to execute it or I need to call the unlink function that... (1 Reply)
Discussion started by: posix
1 Replies