有人可以告訴我爲什麼這個功能根本不復制文件?PHP的「複製」不起作用
$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([email protected]($pluginfile,$urldest)) {
$errors= error_get_last();
}
}
該文件是從/public_html/wp-admin/plugins.php
運行我需要它的文件在($ pluginfile)/public_html/wp-content/plugins/supersqueeze/supersqueeze.php
到($ urldest)/public_html/wp-content/themes/[active wordpress theme]
複製 - 當然替換[活躍wordpress主題]與主題的目錄。
`$ errors`說什麼? – ajreal 2011-01-11 06:25:19
刪除@並告訴我們你得到了什麼錯誤 – meze 2011-01-11 06:25:45