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

Hàm pathinfo() trong PHP - PHP Function

Code $path = 'C:xamppphpphp.ini'; $arr = pathinfo($path); echo "<pre>"; print_r($arr); echo "</pre>";

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

Hàm readfile() trong PHP - PHP Function

Code $path = 'test.txt'; file_put_contents('test.txt', 'this a test'); readfile($path);

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

Hàm readlink() trong PHP - PHP Function

Code // output e.g. /boot/vmlinux-2.4.20-xfs echo readlink('/vmlinuz');

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

Hàm realpath_cache_get() trong PHP - PHP Function

Code echo "<pre>"; print_r(realpath_cache_get()); echo "</pre>";

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

Hàm realpath_cache_size() trong PHP - PHP Function

Code echo "<pre>"; print_r(realpath_cache_size()); echo "</pre>";

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

Hàm realpath() trong PHP - PHP Function

Code $path = './test.txt'; echo realpath($path);

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

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');

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

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);

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

Hàm rmdir() trong PHP - PHP Function

Code if (!is_dir('examples')) { mkdir('examples'); } rmdir('examples');

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

Hàm symlink() trong PHP - PHP Function

Code $target = 'uploads.php'; $link = 'uploads'; symlink($target, $link); echo readlink($link);

Tác giả: Tạ Quốc Bảo viết 14:46 ngày 06/04/2021 chỉnh sửa
<< < .. 37 38 39 40 41 42 43 .. > >>