致命错误:找不到类‘ZipArchive’

时间:2011-01-29 作者:Scott B

导致此错误的原因:

致命错误:在/home/test/dummyurl中找不到类“ZipArchive”。com/wp-content/themes/mytheme/upload-zip。php在线14

PHP版本为5.3.1

WP是否有我应该使用的内置功能?例如的“unzip\\u file”功能行525/wp管理/包括/文件。php“?

function openZip($file_to_open) { 
    global $target;  
    $zip = new ZipArchive();  //This is line 14
    $x = $zip->open($file_to_open);  
    if($x === true) {  
        $zip->extractTo($target);  
        $zip->close();                
        unlink($file_to_open);  
    } else {  
        die("There was a problem. Please try again!");  
    }  
}  

1 个回复
最合适的回答,由SO网友:Jan Fabry 整理而成

这意味着您的PHP安装没有the Zip library. 你可以install it 通过使用--enable-zip 选项,或安装the PECL package.

结束

相关推荐