<?
echo user_ReturnMustUpdateVersion('6.0');
//返回需要升级的版本
function user_ReturnMustUpdateVersion($ver){
$tover=',2.0,2.5,3.0,3.5,3.6,3.7,4.0,4.6,4.7,5.0,5.1,6.0,6.5,6.6,7.0,7.2,7.5,';
if($ver=='7.5')return '最新版本号,无需升级';
list($di,$gao)=explode(','.$ver.',',$tover);
if(!$gao)return '错误的版本号';
$gao=','.trim($gao,',');
return str_replace(',',' ->',$gao);
}
|