zdgtl 10 months ago
zdgtl #coding

Mass Copy Files

PHP Bulk Copy File

<?php
$sourceFile = '/home/u981617792/domains/domain1.com/public_html/update.php';
$domainsDir = '/home/u981617792/domains/';

// Ambil semua direktori domain
$domainDirs = glob($domainsDir . '*/');

foreach ($domainDirs as $domainDir) {
    $destinationFile = $domainDir . 'public_html/update.php';
    
    // Salin file update.php
    if (copy($sourceFile, $destinationFile)) {
        echo "Berhasil menyalin update.php ke $destinationFile\n";
    } else {
        echo "Gagal menyalin update.php ke $destinationFile\n";
    }
}
0
222
Kumpulan Perintah PHP dari Internet

Kumpulan Perintah PHP dari Internet

1743468932.jpg
zdgtl
10 months ago
Menambahkan baris code kedalam file

Menambahkan baris code kedalam file

1743468932.jpg
zdgtl
9 months ago
Menghapus string sebelum dan sesudah patern menggunakan regex di notepa++

Menghapus string sebelum dan sesudah patern menggunakan regex di notep...

1743468932.jpg
zdgtl
9 months ago

PHP Mass Copy File

1743468932.jpg
zdgtl
8 months ago
TMDB Movie Scraper

TMDB Movie Scraper

1743468932.jpg
zdgtl
10 months ago