/**
* 判断当前服务器系统
* @return string
*/
function getOS(){
if(PATH_SEPARATOR == ':'){
return 'Linux';
}else{
return 'Windows';
}
}