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

简体/繁体/火星文转换

  • 1158
  • 927
简体字、繁体字、火星文相互转换
免费
https://api.jisuapi.com/fontconvert/convert
JSON,JSONP
GET POST
https://api.jisuapi.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.jisuapi.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 接口已停用

活动推荐ACTIVITY 更多

  • orc活动

其它推荐RECOMMENDED DATA 更多