Bài viết của Tạ Quốc Bảo

Hàm chmod() trong PHP - PHP Function

Code // chủ file được quyền đọc và viết, mọi người khác không có quyền. chmod("/somedir/somefile", 0600); // chủ file được quyền đọc và viết, mọi người khác có quyền đọc. chmod("/somedir/somefile", 0644); // chủ file có mọi quyền, mọi người có quyền đọc và thực ...

Tác giả: Tạ Quốc Bảo viết 14:46 ngày 06/04/2021 chỉnh sửa

Hàm chown() trong PHP - PHP Function

Code // File name and username to use $file_name= "foo.php"; $path = "/home/sites/php.net/public_html/sandbox/" . $file_name ; $user_name = "root"; // Set the user chown($path, $user_name); // Check the result $stat = stat($path); print_r(posix_getpwuid($stat['uid'])

Tác giả: Tạ Quốc Bảo viết 14:46 ngày 06/04/2021 chỉnh sửa

Hàm clearstatcache() trong PHP - PHP Function

Code $file = 'output_log.txt'; function get_owner($file) { $stat = stat($file); $user = posix_getpwuid($stat['uid']); return $user['name']; } $format = "UID @ %s: %s "; printf($format, date('r'), get_owner($file)); chown($file, 'ross'); printf($fo ...

Tác giả: Tạ Quốc Bảo viết 14:46 ngày 06/04/2021 chỉnh sửa

Hàm copy() trong PHP - PHP Function

Code $file = 'test.txt'; $newfile = 'example.txt'; copy($file, $newfile);

Tác giả: Tạ Quốc Bảo viết 14:46 ngày 06/04/2021 chỉnh sửa

Hàm unlink() trong PHP - PHP Function

Code file_put_contents("test.txt", "this is a test"); unlink("test.txt");

Tác giả: Tạ Quốc Bảo viết 14:46 ngày 06/04/2021 chỉnh sửa

Hàm dirname() trong PHP - PHP Function

Code echo dirname('C:xampphtdocsLMGOpublic est.txt')."<br />"; echo dirname('/xampp/')."<br />"; echo dirname('.')."<br />";

Tác giả: Tạ Quốc Bảo viết 14:46 ngày 06/04/2021 chỉnh sửa

Hàm disk_free_space() trong PHP - PHP Function

Code echo $df = disk_free_space("C:/xampphtdocs") . "<br />"; echo $df_c = disk_free_space("C:") . "<br />"; echo $df_d = disk_free_space("D:") . "<br />";

Tác giả: Tạ Quốc Bảo viết 14:46 ngày 06/04/2021 chỉnh sửa

Hàm disk_total_space() trong PHP - PHP Function

Code echo $df = disk_total_space("C:/xampphtdocs") . "<br />"; echo $df_c = disk_total_space("C:") . "<br />"; echo $df_d = disk_total_space("D:") . "<br />";

Tác giả: Tạ Quốc Bảo viết 14:46 ngày 06/04/2021 chỉnh sửa

Hàm diskfreespace() trong PHP - PHP Function

Code echo $df = diskfreespace("C:/xampphtdocs") . "<br />"; echo $df_c = diskfreespace("C:") . "<br />"; echo $df_d = diskfreespace("D:") . "<br />";

Tác giả: Tạ Quốc Bảo viết 14:46 ngày 06/04/2021 chỉnh sửa

Hàm fclose() trong PHP - PHP Function

Code $handle = fopen('test.txt', 'r'); fclose($handle);

Tác giả: Tạ Quốc Bảo viết 14:46 ngày 06/04/2021 chỉnh sửa
<< < .. 32 33 34 35 36 37 38 .. > >>