当前位置:  编程技术>php
本页文章导读:
    ▪php进行文件Zip压缩的代码      php进行文件Zip压缩的代码,有需要的朋友可以参考下。 以下示例,使用了php中的ZipArchive。   代码如下: <?php /* creates a compressed zip file */ function create_zip($files = array(),$destination = '',$overwrit.........
    ▪php寻找两个字符串的相似性的方法      php中有一个很少用但很有用的函数:similar_text,用于比较两个字符串并返回相似程度的百分比。 示例: 代码如下: similar_text($string1, $string2, $percent); //$percent will have the percentage of similarity......
    ▪列出windows下目录内容的php函数      列出windows下目录内容的php函数,初学php的朋友参考下吧,高手呼地一声就飘过了,呵呵! 代码如下: <?php function list_files($dir) { if(is_dir($dir)) { if($handle = opendir($dir)) { while(($file = readdir($han.........

[1]php进行文件Zip压缩的代码
    来源: 互联网  发布时间: 2013-12-24

php进行文件Zip压缩的代码,有需要的朋友可以参考下。
以下示例,使用了php中的ZipArchive。
 

代码如下:

<?php
/* creates a compressed zip file */
function create_zip($files = array(),$destination = '',$overwrite = false) {
//if the zip file already exists and overwrite is false, return false
if(file_exists($destination) && !$overwrite) { return false; }
//vars
$valid_files = array();
//if files were passed in...
if(is_array($files)) {
//cycle through each file
foreach($files as $file) {
//make sure the file exists
if(file_exists($file)) {
$valid_files[] = $file;
}
}
}
//if we have good files...
if(count($valid_files)) {
//create the archive
$zip = new ZipArchive();
if($zip->open($destination,$overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) !== true) {
return false;
}
//add the files
foreach($valid_files as $file) {
$zip->addFile($file,$file);
}
//debug
//echo 'The zip archive contains ',$zip->numFiles,' files with a status of ',$zip->status;

//close the zip -- done!
$zip->close();

//check to make sure the file exists
return file_exists($destination);
}
else
{
return false;
}
}
/***** Example Usage ***/
$files=array('file1.jpg', 'file2.jpg', 'file3.gif');
create_zip($files, 'myzipfile.zip', true);
?>


    
[2]php寻找两个字符串的相似性的方法
    来源: 互联网  发布时间: 2013-12-24

php中有一个很少用但很有用的函数:similar_text,用于比较两个字符串并返回相似程度的百分比。
示例:

代码如下:
similar_text($string1, $string2, $percent);
//$percent will have the percentage of similarity

    
[3]列出windows下目录内容的php函数
    来源: 互联网  发布时间: 2013-12-24
列出windows下目录内容的php函数,初学php的朋友参考下吧,高手呼地一声就飘过了,呵呵!
代码如下:
<?php
function list_files($dir)
{
if(is_dir($dir))
{
if($handle = opendir($dir))
{
while(($file = readdir($handle)) !== false)
{
if($file != "." && $file != ".." && $file != "Thumbs.db")
{
echo '<a target="_blank" href="'.$dir.$file.'">'.$file.'</a><br>'."\n";
}
}
closedir($handle);
}
}
}
?>

    
最新技术文章:
▪PHP函数microtime()时间戳的定义与用法
▪PHP单一入口之apache配置内容
▪PHP数组排序方法总结(收藏)
▪php数组排序方法大全(脚本学堂整理奉献)
▪php数组排序的几个函数(附实例)
▪php二维数组排序(实例)
▪php根据键值对二维数组排序的小例子
▪php验证码(附截图)
▪php数组长度的获取方法(三个实例)
▪php获取数组长度的方法举例
▪判断php数组维度(php数组长度)的方法
▪php获取图片的exif信息的示例代码
▪PHP 数组key长度对性能的影响实例分析
▪php函数指定默认值的方法示例
▪php提交表单到当前页面、提交表单后页面重定...
▪php四舍五入的三种实现方法
▪php获得数组长度(元素个数)的方法
▪php日期函数的简单示例代码
▪php数学函数的简单示例代码
▪php字符串函数的简单示例代码
▪php文件下载代码(多浏览器兼容、支持中文文...
▪php实现文件下载、支持中文文件名的示例代码...
▪php文件下载(防止中文文件名乱码)的示例代码
▪解决PHP文件下载时中文文件名乱码的问题
▪php数组去重(一维、二维数组去重)的简单示例
▪php小数点后取两位的三种实现方法
▪php Redis 队列服务的简单示例
▪PHP导出excel时数字变为科学计数的解决方法
▪PHP数组根据值获取Key的简单示例
▪php数组去重的函数代码示例
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3