(PHP 4, PHP 5)
unlink — Deletes a file
Deletes filename . Similar to the Unix C unlink() function.
Path to the file.
Note: Context 지원은 PHP 5.0.0에서 추가되었습니다. contexts에 관한 자세한 설명은 Stream 함수 목록을 참고하십시오.
성공할 경우 TRUE를, 실패할 경우 FALSE를 반환합니다.
버전 | 설명 |
---|---|
5.0.0 | As of PHP 5.0.0 unlink() can also be used with some URL wrappers. Refer to 지원 프로토콜/래퍼 목록 for a listing of which wrappers support unlink(). |
Example #1 Basic unlink() usage
<?php
$fh = fopen('test.html', 'a');
fwrite($fh, '<h1>Hello world!</h1>');
fclose($fh);
mkdir('testdir', 0777);
unlink('test.html');
unlink('testdir');
?>