Home > Backend Development > PHP Tutorial > PHP code PHP code converts full-width numbers to half-width numbers

PHP code PHP code converts full-width numbers to half-width numbers

WBOY
Release: 2016-07-29 08:37:13
Original
1022 people have browsed it

//Convert full-width numbers to half-width numbers
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<$fnlen;$i++) $fnum = str_replace($nums[$i],$fnums[$i],$fnum);
$slen = strlen($ fnum);
$oknum = '';
for($i=0;$i<$slen;$i++){
if(ord($fnum[$i]) > 0x80) $i++;
else $ oknum .= $fnum[$i];
}
if($oknum=="") $oknum=0;
return $oknum;
}

The above introduces the php code. The php code converts full-width numbers into half-width numbers, including the content of php code. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template