PHP'nin 'kopya' yardım lütfen!

0 Cevap php

Bu fonksiyon tüm dosya kopyalama değil neden kimse bana söyleyebilir misiniz?

$pluginfile = get_bloginfo('template_url') . '/wp-content/plugins/supersqueeze/supersqueeze.php';

$urlparts = get_bloginfo('template_url');
$homeurl = home_url();
$urlstrip = str_replace($homeurl, '..', $urlparts);
$urldest = $urlstrip . '/supersqueeze.php';

function copyemz(){ 
global $pluginfile; global $urldest;
if(!@copy($pluginfile,$urldest)) {
        $errors= error_get_last();

    }
}

Bu dosya /public_html/wp-admin/plugins.php çalıştırılır

Ben ($ pluginfile) de dosyayı kopyalamak gerekir /public_html/wp-content/plugins/supersqueeze/supersqueeze.php

($ urldest) için /public_html/wp-content/themes/[active wordpress theme] - Tabii tema dizini ile [aktif wordpress tema] yerine.

0 Cevap