Breaking

Sunday, May 13, 2012

Thủ thuật làm web: Các hàm xử lý file trong php (2)

Trong phần thu thuat lam web này mình xin giới thiệu tiếp phần 2 các hàm xử lý file trong php.



5. fclose
Đóng 1 file đang mở
Cú pháp: bool fclose ( resource $handle)
<?php
$handle = fopen('somefile.txt','r');
fclose($handle);
?>
6. unlink
Xóa file
Cú pháp: bool unlink (string $filename)
<?php unlink('test.html');?>
7. mkdir
Tạo folder
bool mkdir ( string $pathname [,int $mode =0777[, bool $recursive = false]])
$pathname: Tên folder
$mode: quyền truy cập vao folder(777 là cao nhất), trên window, thông số này php bỏ qua
$recursive: nếu là true, php sẽ tạo folder con
<?php mkdir("hinh/gaixinh",0777,true); ?>
8. copy
Sao chép file
Cú pháp: bool copy ( string $source, string $dest)
<?php
$file = 'download/tagHTML.HLP';
$newfile = 'tagHTML.Bak';
if(!copy($file,$newfile)) echo "Lỗi, không chép dc" ;
?>
Phần 1: Thu thuat lam web: Cac ham xu li file trong php(1)

No comments:

Post a Comment