php 版本处理类
程序员文章站
2023-12-31 11:59:04
...
php 版本处理类
例如记录app版本,或某些版本数据,如果使用1.0.0这种版本格式记录入库,在需要筛选查询时会比较麻烦。
而把版本字符串转为数字保存,可以方便版本间的比较和筛选。
例如:要查询3.0.1 与 10.0.1之间的版本,因为3.0.1比10.0.1大(字符串比较),因此需要处理才可以查询。
而把 3.0.1 和 10.0.1 先转为数字 30001 和 100001来比较查询,则很方便。
Version.class.php
/**
* 版本处理类,提供版本与数字互相转换,方便入库后进行比较筛选
* Date: 2015-06-30
* Author: fdipzone
* ver: 1.0
*
* Func:
* public version_to_integer 将版本转为数字
* public integer_to_version 将数字转为版本
* public check 检查版本格式是否正确
* public compare 比较两个版本的值
*/classVersion{// class start/**
* 将版本转为数字
* @param String $version 版本
* @return Int
*/publicfunctionversion_to_integer($version){if($this->check($version)){
list($major, $minor, $sub) = explode('.', $version);
$integer_version = $major*10000 + $minor*100 + $sub;
return intval($integer_version);
}else{
thrownew ErrorException('version Validate Error');
}
}
/**
* 将数字转为版本
* @param Int $version_code 版本的数字表示
* @return String
*/publicfunctioninteger_to_version($version_code){if(is_numeric($version_code) && $version_code>=10000){
$version = array();
$version[0] = (int)($version_code/10000);
$version[1] = (int)($version_code%10000/100);
$version[2] = $version_code%100;
return implode('.', $version);
}else{
thrownew ErrorException('version code Validate Error');
}
}
/**
* 检查版本格式是否正确
* @param String $version 版本
* @return Boolean
*/publicfunctioncheck($version){$ret = preg_match('/^[0-9]{1,3}\.[0-9]{1,2}\.[0-9]{1,2}$/', $version);
return$ret? true : false;
}
/**
* 比较两个版本的值
* @param String $version1 版本1
* @param String $version2 版本2
* @return Int -1:12
*/publicfunctioncompare($version1, $version2){if($this->check($version1) && $this->check($version2)){
$version1_code = $this->version_to_integer($version1);
$version2_code = $this->version_to_integer($version2);
if($version1_code>$version2_code){
return1;
}elseif($version1_code$version2_code){
return -1;
}else{
return0;
}
}else{
thrownew ErrorException('version1 or version2 Validate Error');
}
}
} // class end?>
demo.php
require'Version.class.php';
$version = '2.7.1';
$obj = new Version();
// 版本转数字$version_code = $obj->version_to_integer($version);
echo$version_code.'
'; // 20701// 数字转版本$version = $obj->integer_to_version($version_code);
echo$version.'
'; // 2.7.1// 检查版本$version = '1.1.a';
var_dump($obj->check($version)); // false// 比较两个版本$version1 = '2.9.9';
$version2 = '10.0.1';
$result = $obj->compare($version1, $version2);
echo$result; // -1?>
源码下载地址:点击查看
版权声明:本文为博主原创文章,未经博主允许不得转载。
以上就介绍了php 版本处理类,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
相关文章
相关视频