PHP Zip解压 文件在线解压缩的函数代码

2015-01-24信息快讯网

PHP在线解压缩Zip 文件函数代码,需要在线zip解压的朋友可以参考下。

 
/********************** 
*@file - path to zip file 
*@destination - destination directory for unzipped files 
*/ 
function unzip_file($file, $destination){ 
// create object 
$zip = new ZipArchive() ; 
// open archive 
if ($zip->open($file) !== TRUE) { 
die ('Could not open archive'); 
} 
// extract contents to destination directory 
$zip->extractTo($destination); 
// close archive 
$zip->close(); 
echo 'Archive extracted to directory'; 
} 

PHP Zip压缩 在线对文件进行压缩的函数
php数组函数序列之array_search()- 按元素值返回键名
php数组函数序列之krsort()- 对数组的元素键名进行降序排序,保持索引关系
php数组函数序列之asort() - 对数组的元素值进行升序排序,保持索引关系
php数组函数序列之sort() 对数组的元素值进行升序排序
php数组函数序列之ksort()对数组的元素键名进行升序排序,保持索引关系
php实现用户在线时间统计详解
PHP缩略图等比例无损压缩,可填充空白区域补充色
php压缩多个CSS为一个css的代码并缓存
Base64在线编码解码实现代码 演示与下载
PHP执行zip与rar解压缩方法实现代码
php通过文件头检测文件类型通用代码类(zip,rar等)
利用php+mysql来做一个功能强大的在线计算器
php下统计用户在线时间的一种尝试
PHP zlib扩展实现页面GZIP压缩输出
php 网页播放器用来播放在线视频的代码(自动判断并选择视频文件类型)
PHP similar_text 字符串的相似性比较函数
PHP Zip压缩 在线对文件进行压缩的函数
PHP为表单获取的URL 地址预设 http 字符串函数代码
PHP 创建标签云函数代码
PHP 强制性文件下载功能的函数代码(任意文件格式)
PHP array_flip() 删除重复数组元素专用函数
PHP开启gzip页面压缩实例代码
PHP 源代码压缩小工具
将文件夹压缩成zip文件的php代码
php zip文件解压类代码
PHP 压缩文件夹的类代码
PHP 在线翻译函数代码
wiki-shan写的php在线加密的解密程序
©2014-2024 dbsqp.com