- 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 fputs() trong PHP - PHP Function
Code file_put_contents('test.txt', 'Zaidap.com.net'); $fp = fopen('test.txt','r+'); echo file_get_contents('test.txt') ."<br />"; echo "số kí tự đã ghi là: " . fputs($fp, "examples") ."<br />"; echo file_get_contents('test.txt') ."<br />";
Hàm fread() trong PHP - PHP Function
Code file_put_contents('test.txt', 'Zaidap.com.net'); $filename = "test.txt"; $handle = fopen($filename, "r"); echo $contents = fread($handle, 8); fclose($handle);
Hàm fseek() trong PHP - PHP Function
Code $fp = fopen('test.txt', 'r+'); echo ftell($fp) ." <br />"; fseek($fp, 5); echo ftell($fp);
Hàm fstat() trong PHP - PHP Function
Code $fp = fopen('test.txt', 'r+'); echo "<pre>"; print_r(fstat($fp)); echo "</pre>";
Hàm ftell() trong PHP - PHP Function
Code $fp = fopen('test.txt', 'r+'); echo ftell($fp) ." <br />"; fseek($fp, 5); echo ftell($fp);
Hàm ftruncate() trong PHP - PHP Function
Code $filename = 'test.txt'; file_put_contents($filename, "this is a test"); $handle = fopen($filename, 'r+'); ftruncate($handle, 10); echo fread($handle, filesize($filename)); fclose($handle);
Hàm glob() trong PHP - PHP Function
Code foreach (glob("*.txt" ) as $filename) { echo "$filename size " . filesize($filename) . "<br />"; }
Hàm is_dir() trong PHP - PHP Function
Code function checkdir( $path){ if (is_dir($path)) { return $path . " là một thư mục <br />"; }else{ return $path . " không phải một thư mục <br />"; } } echo checkdir("test.txt"); echo checkdir("css"); echo checkdir("files"); echo checkdir("something");
Hàm is_executable() trong PHP - PHP Function
Code function checkexEcutable( $path){ if (is_executable($path)) { return $path . " có thể thực thi <br />"; }else{ return $path . " không thể thực thi <br />"; } } echo checkexEcutable("test.txt"); echo checkexEcutable("css"); echo checkexEcutable("files");
Hàm is_file() trong PHP - PHP Function
Code function checkFile( $path){ if (is_file($path)) { return $path . " là một tập tin <br />"; }else{ return $path . " không phải một tập tin <br />"; } } echo checkFile("test.txt"); echo checkFile("css"); echo checkFile("something.txt");