- 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 pathinfo() trong PHP - PHP Function
Code $path = 'C:xamppphpphp.ini'; $arr = pathinfo($path); echo "<pre>"; print_r($arr); echo "</pre>";
Hàm readfile() trong PHP - PHP Function
Code $path = 'test.txt'; file_put_contents('test.txt', 'this a test'); readfile($path);
Hàm readlink() trong PHP - PHP Function
Code // output e.g. /boot/vmlinux-2.4.20-xfs echo readlink('/vmlinuz');
Hàm realpath_cache_get() trong PHP - PHP Function
Code echo "<pre>"; print_r(realpath_cache_get()); echo "</pre>";
Hàm realpath_cache_size() trong PHP - PHP Function
Code echo "<pre>"; print_r(realpath_cache_size()); echo "</pre>";
Hàm realpath() trong PHP - PHP Function
Code $path = './test.txt'; echo realpath($path);
Hàm rename() trong PHP - PHP Function
Code mkdir('test'); $path = 'test/test.txt'; file_put_contents($path, 'this is a test'); rename($path, 'example.txt');
Hàm rewind() trong PHP - PHP Function
Code $path = 'example.txt'; $fp = fopen($path, 'r+a+'); fseek($fp, 5); echo ftell($fp)."<br />"; rewind($fp); echo ftell($fp);
Hàm rmdir() trong PHP - PHP Function
Code if (!is_dir('examples')) { mkdir('examples'); } rmdir('examples');
Hàm symlink() trong PHP - PHP Function
Code $target = 'uploads.php'; $link = 'uploads'; symlink($target, $link); echo readlink($link);