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

PHP converts full-width numbers to half-width numbers

高洛峰
高洛峰Original
2016-11-29 15:49:111022browse

function getalabnum($fnum) 
{ 
 $nums = array("0","1","2","3","4","5","6","7","8","9","+","-","%","."); 
 $fnums = "0123456789+-%."; 
 for($i=0;$i<count($nums);$i++){ 
  if($nums[$i]==$fnum) return $fnums[$i]; 
 }//开源代码phpfensi.com 
 return $fnum; 
} 
//实例应用 
echo getalabnum(&#39;6&#39;); // 6


Statement:
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