首页 工具万能 简体/繁体/火星文转换
简体/繁体/火星文转换

简体/繁体/火星文转换

  • 1158
  • 927
简体字、繁体字、火星文相互转换
免费
  • 普通用户:100次
  • 会员:不限次
  • 技术代理:不限次
https://api.binstd.com/fontconvert/convert
JSON,JSONP
GET POST
https://api.binstd.com/fontconvert/convert?appkey=yourappkey&content=你好&type=2h

请求参数:

API在线测试
参数名称类型必填说明
content string 要转换的内容
type string 转换类型 2s转成简体 2t转成繁体 2h转成火星文

返回参数:

参数名称类型说明
type string 转换类型
content string 要转换的内容
rcontent string 转换后的内容

请求代码:

查看代码
<?php

require_once 'curl.func.php';

$appkey = 'your_appkey_here';//你的appkey
$content = '今天天气挺好的';//utf8
$type = '2h';// 2t 2s 2h可选
$url = "https://api.binstd.com/fontconvert/convert?appkey=$appkey&content=$content&type=$type";
$result = curlOpen($url, ['ssl'=>true]);
$jsonarr = json_decode($result, true);
//exit(var_dump($jsonarr));
if($jsonarr['status'] != 0)
{
    echo $jsonarr['msg'];
    exit();
}

$result = $jsonarr['result'];
echo $result['type'].' '.$result['content'].' '.$result['rcontent'];
                    

JSON返回示例 :

{
    "status": "0",
    "msg": "ok",
    "result": {
        "type": "2h",
        "content": "今天天气挺好的",
        "rcontent": "妗兲兲氣侹恏的"
    }
}
                    

API错误码:

代号说明
201 内容为空
205 没有信息

系统错误码:

代号说明
101 APPKEY为空或不存在
102 APPKEY已过期
103 APPKEY无请求此数据权限
104 请求超过次数限制
105 IP被禁止
106 IP请求超过限制
107 接口维护中
108 接口已停用
会员等级权限
普通用户 100次
会员 不限次
技术代理 不限次

活动推荐ACTIVITY 更多

  • orc活动

热门API接口推荐RECOMMENDED DATA 更多

开通BinSTD会员

开通账号:

×

会员类型:

  • 会员

会员时长:

  • 按年付

总金额:

  • ¥ 600.00元原价:900.00元
  • ¥ 300.00元原价:450.00元
  • ¥ 50.00元原价:75.00元
  • ¥ 100.00元原价:150.00元
  • ¥ 150.00元原价:225.00元
  • ¥ 200.00元原价:300.00元
  • ¥ 250.00元原价:375.00元