文章介绍一个自定的资金转换函数,可以根据用户输入的信息转换成银行格式资金格式,有需要以同学可以参考一下,代码如下:
-
-
-
-
-
-
-
- function ExchangeMoney($N_money)
- {
- $A_tmp=explode(".",$N_money );
- $I_len=strlen($A_tmp[0]);
- if($I_len%3==0)
- {
- $I_step=$I_len/3;
- }else
- {
- $step=($len-$len%3)/3+1;
- }
-
-
- $C_cur="";
-
- while($I_len<>0)
- {
- $I_step--;
-
-
- if($I_step==0)
- {
- $C_cur .= substr($A_tmp[0],0,$I_len-($I_step)*3);
- }else
- {
- $C_cur .= substr($A_tmp[0],0,$I_len-($I_step)*3).",";
- }
-
-
- $A_tmp[0]=substr($A_tmp[0],$I_len-($I_step)*3);
- $I_len=strlen($A_tmp[0]);
- }
-
-
-
- if($A_tmp[1]=="")
- {
- $C_cur .= ".00";
- }else
- {
- $I_len=strlen($A_tmp[1]);
- if($I_len<2)
- {
- $C_cur .= ".".$A_tmp[1]."0";
- }else
- {
- $C_cur .= ".".substr($A_tmp[1],0,2);
- }
- }
-
- $C_cur="¥".$C_cur;
- return $C_cur;
- }
|