//转gb2312内容(20151203)
function toGB2312Char($data){
if( !empty($data) ){
$fileType = mb_detect_encoding($data , array('UTF-8','GBK','LATIN1','BIG5'));
if( $fileType != 'GBK'){
$data = mb_convert_encoding($data ,'GBK' , $fileType);
//删除BOM留下的乱码?号
if(substr($data, 0, 1)=="?"){
$data=substr($data,1);
}
}
}
return $data;
}
function mytest()
dim a,b,c
if a=2 then
response.write("aa")
elseif a=b then
end if
end function