• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Hướng dẫn in danh sách tập tin và thư mục ra txt bằng php

Admin

Well-Known Member
Staff member
Administrator
Tác dụng của code là khi bạn chạy domain/taptinthumuc.php thì toàn bộ danh sách tập tin và thư mục sẽ ghi lại trong tập tin tuoitreit_vn.txt
Tạo tập tin taptinthumuc.php dán code này vào
PHP:
<?php
function list_files($directory = '.')
{
    if ($directory != '.')
    {
        $directory = rtrim($directory, '/') . '/';
    }
    
    if ($handle = opendir($directory))
    {
        while (false !== ($file = readdir($handle)))
        {
            if ($file != '.' && $file != '..')
            {
                $f=fopen("tuoitreit_vn.txt","a");
fwrite($f,"Toàn bộ tập tin và thư mục trên host là\n$file\n");
fclose($f);
            }
        }
        
        closedir($handle);
    }
}

list_files();
?>
Lưu lại là xong
Chúc các bạn thành công!
Bài viết chỉ đăng duy nhất tại tuoitreit.vn, mọi sao chép phải ghi rõ nguồn và liên kết đến bài viết gốc.
 
Đúng cái e đang cần. Thanks a Thắng, đang định ib hỏi a :D
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top