Home > Backend Development > PHP Problem > How to convert full-width numbers to half-width in php code

How to convert full-width numbers to half-width in php code

coldplay.xixi
Release: 2023-03-06 16:42:01
Original
2900 people have browsed it

How to convert full-width numbers to half-width numbers in php code: use replace conversion, the code is [for($i=0;$i<$fnlen;$i) $fnum = str_replace($nums[$i] ,$fnums[$i],$fnum);].

How to convert full-width numbers to half-width in php code

How to convert full-width numbers to half-width numbers in php code:

Convert full-width numbers to half-width numbers

function GetAlabNum($fnum){

    $nums = array(&#39;0&#39;,&#39;1&#39;,&#39;2&#39;,&#39;3&#39;,&#39;4&#39;,&#39;5&#39;,&#39;6&#39;,&#39;7&#39;,&#39;8&#39;,&#39;9&#39;,&#39;.&#39;,&#39;-&#39;,&#39;+&#39;,&#39;:&#39;);

    $fnums = array(&#39;0&#39;,&#39;1&#39;,  &#39;2&#39;,&#39;3&#39;,  &#39;4&#39;,&#39;5&#39;,  &#39;6&#39;, &#39;7&#39;,&#39;8&#39;,  &#39;9&#39;,&#39;.&#39;,  &#39;-&#39;, &#39;+&#39;,&#39;:&#39;);

    $fnlen = count($fnums);

    for($i=0;$i<$fnlen;$i++) $fnum = str_replace($nums[$i],$fnums[$i],$fnum);

    $slen = strlen($fnum);

    $oknum = &#39;&#39;;

    for($i=0;$i<$slen;$i++){

        if(ord($fnum[$i]) > 0x80) $i++;

        else $oknum .= $fnum[$i];

    }

    if($oknum=="") $oknum=0;

    return $oknum;

}
Copy after login

If you want to learn more about programming, please pay attention to the php training column!

The above is the detailed content of How to convert full-width numbers to half-width in php code. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
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