阿拉伯数字金额转中文大写金额API
快速用法
1 2 |
请求方式: GET https://dev.minirplus.com/api/num_to_chinese.php?input=3211261530175.98 |
返回值
1 2 3 4 5 6 |
{ input: "3211261530175.98", mode: "1", sim: "0", output: "叁兆贰仟壹佰壹拾贰亿陆仟壹佰伍拾叁万零壹佰柒拾伍元玖角捌分" } |
PHP调用方法
1 2 3 4 5 |
<?php $json = file_get_contents('https://dev.minirplus.com/api/num_to_chinese.php?input=3211261530175.98'); $ntc_json = json_decode($json); echo 'Chinese: '.$ntc_json->output; echo '<br>'; |
详细参数及格式
- input:(必须)需要进行转换的阿拉伯数字,格式为int
- mode,(可选)转换模式,1为金额格式,0为普通模式,默认为1金额模式
- sim,(可选)中文格式,1为小写,0为大写,默认为0大写
3 comments