- 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 feof() trong PHP - PHP Function
Code file_put_contents('test.txt', 'Zaidap.com.net'); $fp = fopen('test.txt','rb'); while(feof($fp) == false) { $c = fgetc($fp); echo "kí tự thứ " .ftell($fp). " là: " . $c ."<br />"; }
Hàm fgetc() trong PHP - PHP Function
Code file_put_contents('test.txt', 'Zaidap.com.net'); $fp = fopen('test.txt','rb'); while(feof($fp) == false) { $c = fgetc($fp); echo $c ."<br />"; }
Hàm fgets() trong PHP - PHP Function
Code file_put_contents('test.txt', 'Zaidap.com.net <br /> this is a test'); $handle = @fopen("test.txt", "r"); if ($handle) { while (($buffer = fgets($handle, 2048)) !== false) { echo $buffer . "<br />"; } fclose($handle); }
Hàm fgetss() trong PHP - PHP Function
Code file_put_contents('test.txt', 'Zaidap.com.net <br /> this is a test'); $handle = @fopen("test.txt", "r"); if ($handle) { while (($buffer = fgets($handle, 2048)) !== false) { echo $buffer . "<br />"; } fclose($handle); }
Hàm file_exists() trong PHP - PHP Function
Code file_put_contents('test.txt', 'this is a test'); if (file_exists('test.txt')) { echo "file tồn tại!"; }else{ echo "file không tồn tồn tại!"; }
Hàm file_get_contents() trong PHP - PHP Function
Code file_put_contents('test.txt', 'this is a test'); //đọc toàn bộ file echo file_get_contents('test.txt'). "<br />"; //đọc từ vị trí số 5 và lây 4 kí tự echo file_get_contents('test.txt', null, null, 5, 4). "<br />"; //đọc từ cuối file và lây 4 kí tự echo ...
Hàm file_put_contents() trong PHP - PHP Function
Code file_put_contents('test.txt', 'this is a test'); //đọc toàn bộ file echo file_get_contents('test.txt');
Hàm file() trong PHP - PHP Function
Code $filename = 'index.php'; file_put_contents('test.txt', "This is a test. this is a example example. this is a newline." ); //đọc toàn bộ file $file = file('test.txt'); echo "<pre>"; print_r($file ); echo "</pre>";
Hàm fileatime() trong PHP - PHP Function
Code file_put_contents('test.txt', 'this is something'); if (file_exists('test.txt')){ echo "test.txt được truy cập cuối cùng vào lúc: " . date("F d Y H:i:s.", fileatime("test.txt")); }
Hàm filectime() trong PHP - PHP Function
Code $filename = 'test.txt'; if (file_exists($filename)) { echo "$filename được thay đổi lần cuối vào lúc: " . date("F d Y H:i:s.", filectime($filename)); }