Home > php教程 > php手册 > php代码把全角数字转为半角数字

php代码把全角数字转为半角数字

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-13 12:30:34
Original
1206 people have browsed it

//把全角数字转为半角数字
function GetAlabNum($fnum){
    $nums = array('0','1','2','3','4','5','6','7','8','9','.','-','+',':');
    $fnums = array('0','1',  '2','3',  '4','5',  '6', '7','8',  '9','.',  '-', '+',':');
    $fnlen = count($fnums);
    for($i=0;$i    $slen = strlen($fnum);
    $oknum = '';
    for($i=0;$i        if(ord($fnum[$i]) > 0x80) $i++;
        else $oknum .= $fnum[$i];
    }
    if($oknum=="") $oknum=0;
    return $oknum;
}

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template