当前位置: 编程技术>php
本页文章导读:
▪php 字符串压缩的例子 php对字符串压缩,主要用到二个函数,分别是:gzcompress() 和gzuncompress()。
下面是一个具体的例子,供参考:
<?php
/**
* 功能:字符串压缩
* 函数gzcompress() 和gzuncompress()的应用实例
* edit by.........
▪php函数默认参数的实例代码 php函数的默认参数,示例:
<?php
/**
* 函数的参数个数任意
* edit by www.
*/
function foo() {
$args = func_get_args();
static $i = 0; //统计参数个数
/*
foreach ($args as $key => $value) {
echo 'arg' . ($key.........
▪php 按修改日期保存文件到日期文件夹的实例代码 PHP递归整理文件夹,按日期递归实现保存文件。
代码:
<?php
/**
* 递归整理文件 按日期
* edit by www.
*/
//调用函数test("test");
echo "整理完成!";
//echo is_dir("test/Data");
function test($dire)
{
.........
[1]php 字符串压缩的例子
来源: 互联网 发布时间: 2013-12-24
php对字符串压缩,主要用到二个函数,分别是:gzcompress() 和gzuncompress()。
下面是一个具体的例子,供参考:
<?php /** * 功能:字符串压缩 * 函数gzcompress() 和gzuncompress()的应用实例 * edit by www. */ $string = “Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc ut elit id mi ultricies adipiscing. Nulla facilisi. Praesent pulvinar, sapien vel feugiat vestibulum, nulla dui pretium orci, non ultricies elit lacus quis ante. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam pretium ullamcorper urna quis iaculis. Etiam ac massa sed turpis tempor luctus. Curabitur sed nibh eu elit mollis congue. Praesent ipsum diam, consectetur vitae ornare a, aliquam a nunc. In id magna pellentesque tellus posuere adipiscing. Sed non mi metus, at lacinia augue. Sed magna nisi, ornare in mollis in, mollis sed nunc. Etiam at justo in leo congue mollis. Nullam in neque eget metus hendrerit scelerisque eu non enim. Ut malesuada lacus eu nulla bibendum id euismod urna sodales. “; $compressed = gzcompress($string); echo “Original size: “. strlen($string).”\n”; /* 输出原始大小 Original size: 800 */ echo “Compressed size: “. strlen($compressed).”\n”; /* 输出压缩后的大小 Compressed size: 418 */ // 解压缩 $original = gzuncompress($compressed); ?>
说明:
以上代码,产生几乎50% 压缩比率。
另外,在php中对字符串的压缩,还可以使用 gzencode() 和 gzdecode() 函数来压缩,与函数gzcompress() 和gzuncompress()的不同,仅在于压缩算法不同。
[2]php函数默认参数的实例代码
来源: 互联网 发布时间: 2013-12-24
php函数的默认参数,示例:
<?php /** * 函数的参数个数任意 * edit by www. */ function foo() { $args = func_get_args(); static $i = 0; //统计参数个数 /* foreach ($args as $key => $value) { echo 'arg' . ($key+1) . ': ' . $value . "<br>"; }*/ getVars($args, $i); } /** * 参数判断 */ function getVars($args, $i) { if (is_array($args)) { foreach ($args as $key => $value) { if (is_array($value)) { getVars($value, $i); } else { echo 'arg' . ($i+1) . ': ' . $value . "<br>"; $i++; } } } else { echo 'arg' . ($i+1) . ': ' . $value . "<br>"; $i++; } } //foo(); //foo('hello'); //foo('hello','world'); foo('hello','world', array('good','bye')); ?>
[3]php 按修改日期保存文件到日期文件夹的实例代码
来源: 互联网 发布时间: 2013-12-24
PHP递归整理文件夹,按日期递归实现保存文件。
代码:
<?php /** * 递归整理文件 按日期 * edit by www. */ //调用函数test("test"); echo "整理完成!"; //echo is_dir("test/Data"); function test($dire) { //打开文件夹 $dir = opendir($dire); while(($file = readdir($dir))!= false) { //如果是上级目录和根目录程序继续进行,不能递归调用函数,否则会出现无限递归 if($file == '.'|| $file == "..") { continue; } //如果文件时目录就调用自身的函数继续执行 if(is_dir($dire."/".$file)) { test($dire."/".$file); //echo "Directory: ".$file."<br/>"; } else { //当不是目录时 //echo "filename: ".$file."<br/>"; $f = $dire."/".$file; //打开文件,以只读模式 $handle = fopen($f,"r"); $fstat = fstat($handle); //文件的修改日期 $fdate = date("Y-m-d",$fstat["mtime"]); $flag = false; //echo $fdate."<br/>"; //创建以日期命名的目录,如果存在就不在重复创建,如果不存在就创建 $dir1 = opendir("date"); while(($file1 = readdir($dir1))!=false) { //判断是否存在以该日期命名的目录 if($file1 == $fdate ) { $flag = true; } } if(!$flag) { mkdir("./date/".$fdate,0700); } if (!copy($dire."/".$file,"./date/".$fdate."/".$file)) { echo "failed to copy $file...\n"; } //echo "filename: ".$file." 最后修改时间:".date("Y-m-d",$fstat["mtime"])."<br/>"; } } return; } /* 获得文件信息的例子 $file = "2013-7-30.php"; //打开文件,r表示以只读方式打开 $handle = fopen($file,"r"); //获取文件的统计信息 $fstat = fstat($handle); echo "文件名:".basename($file)."<br>"; //echo "文件大小:".round(filesize("$file")/1024,2)."kb<br>"; echo "文件大小:".round($fstat["size"]/1024,2)."kb<br>"; //echo "最后访问时间:".date("Y-m-d h:i:s",fileatime($file))."<br>"; echo "最后访问时间:".date("Y-m-d",$fstat["atime"])."<br>"; //echo "最后修改时间:".date("Y-m-d h:i:s",filemtime($file))."<br>"; echo "最后修改时间:".date("Y-m-d",$fstat["mtime"]); */ /*创建目录例子 mkdir("./123", 0700);*/ /*将一个文件复制到另一个位置例子 $source = '2013-7-30.php'; $dest = 'date/2013.php'; if (!copy($source, $dest)) { echo "failed to copy $file...\n"; } */ ?>
最新技术文章: