我想自动将最新的WordPress版本下载到网络服务器的根文件夹。到目前为止,这是我的代码:
<?php
$fp = fopen (dirname(__FILE__) . '/wp.tar.gz', 'w+');
$ch = curl_init('http://wordpress.org/latest.tar.gz');
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_exec($ch);
curl_close($ch);
fclose($fp);
exec('tar -zxvf wp.tar.gz wordpress');
unlink('wp.tar.gz');
?>
问题是,WordPress tar文件包含一个包含所有文件的目录/ wordpress,所以在运行这个PHP文件后,我现在有一个/ wordpress目录,其中包含文件,但不是/ wordpress中的所有内容,我希望它在/(从PHP文件运行的地方)。或者我应该使用'mv'命令将所有内容从/ wordpress移动到/?
谢谢
答案 0 :(得分:2)
如果您使用足够新版本的GNU或BSD tar:
exec('tar -zxvf --strip-components=1 wp.tar.gz wordpress');
顺便说一句,如果您不需要提取文件列表,则不需要v
选项。
另请参阅:How do I extract a specific directory from a tarball? and strip a leading directory?
答案 1 :(得分:1)
Why dont you use this :
http://wordpress.org/latest.zip
Then your code would look like:
<?php
$filename = "http://wordpress.org/latest.zip";
$contents = file_get_contents($filename);
$latestzip_file = 'latest.zip';
$fh = fopen($latestzip_file, 'w') or die("can't open file");
fwrite($fh, $contents);
fclose($fh);
$zip = new ZipArchive;
$res = $zip->open($latestzip_file);
if($res === TRUE)
{
$zip->extractTo(dirname(__FILE__)); // Extract to the main directory //
$zip->close();
unlink($latestzip_file);
}
?>
答案 2 :(得分:1)
尝试添加--strip=1
opt
tar xvzf wp.tar.gz --strip=1