- 1 Cài đặt phần mềm cần thiết cho học lập trình web
- 2 Tự Học HTML Cơ Bản Online Miễn Phí Từ A đến Z
- 3 Seo website dành cho dân IT
- 4 REACT NATIVE
- 5 sdfdsf
- 6 Lập trình di động với React Native
- 7 Vue.js
- 8 Kiếm thức cơ bản HTML CSS
- 9 So sánh count() và sizeof() 2 phần tử đếm mảng
- 10 Toán tử và biểu thức của php
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 ...
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'])
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 ...
Hàm copy() trong PHP - PHP Function
Code $file = 'test.txt'; $newfile = 'example.txt'; copy($file, $newfile);
Hàm unlink() trong PHP - PHP Function
Code file_put_contents("test.txt", "this is a test"); unlink("test.txt");
Hàm dirname() trong PHP - PHP Function
Code echo dirname('C:xampphtdocsLMGOpublic est.txt')."<br />"; echo dirname('/xampp/')."<br />"; echo dirname('.')."<br />";
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 />";
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 />";
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 />";
Hàm fclose() trong PHP - PHP Function
Code $handle = fopen('test.txt', 'r'); fclose($handle);