美文网首页
微擎API 开发之汉字转拼音助手

微擎API 开发之汉字转拼音助手

作者: Jetsung | 来源:发表于2018-01-14 23:52 被阅读622次

    ...最近看到有人叫帮忙写微擎开发的,单子没接。然后就自己写了个试手,发现挺简单的嘛。。。

    首发于:SKIY开发笔记 https://www.skiy.net/201801144924.html
    下面说一下流程:

    1. 首先在 "framework/builtin/userapi/api/" 下添加文件 "pinyin.php",代码如下:
    <?php
    
    /**
     * 汉字转拼音
     * Skiychan <dev@skiy.net>
     * https://www.skiy.net
     */
    
    $msg = $this->message['content'];
    
    if (! $this->inContext) {
        $this->beginContext();
        $str = '【汉字转拼音】功能已开启,输入随意汉字即可查询(不可有空格),退出输入【退出】二字即可';
        return $this->respText($str);
    }
    
    if ($msg == '退出') {
        $this->endContext();
        $str = '您已退出【汉字转拼音】功能';
        return $this->respText($str);
    }
    
    $apiurl = 'https://www.apijs.cc/api/pinyin/index/%s/4';; 
    
    $resp = fomat_arr($apiurl, $msg);
    
    if (! $resp) {
        return $this->respText('【汉字转拼音】数据获取失败');
    }
    
    if ($resp['code'] !== 0) {
        return $this->respText($resp['message']);
    }
    
    $json_arr = $resp['data'];
    
    $sentence = $json_arr[0];
    $sentence_tone = $json_arr[1];
    
    $info = <<<SZT
    【汉字转拼音】
    汉字: {$msg}
    拼音: {$sentence}
    拼音(带声调): {$sentence_tone}
    SZT;
    
    $response = $this->respText($info);
    return $response;
    
    /**
     * 取数据
     */
    function fomat_arr($url, $msg) {
        $url = sprintf($url, urlencode($msg));
        $resp = ihttp_get($url);
        if ($resp['code'] == 200 && $resp['content']) {
            $obj = json_decode($resp['content'], true);
            return $obj;
        }
        return false;
    }
    

    汉字转拼音接口由我本人开发的一个免费 API 接口网站【API集市】https://www.apijs.cc 提供。

    1. 在微擎的对应的公众号下的“自动回复”,“自定义接口回复”,“添加自定义接口”,“添加关键词”,“精准触发”,填入“拼音”,选择“添加处理接口”,“本地文件”,文件列表下选择“pinyin.php”即可开启。
    WX20180114-234156.png WX20180114-233658.png

    相关文章

      网友评论

          本文标题:微擎API 开发之汉字转拼音助手

          本文链接:https://www.haomeiwen.com/subject/fyaloxtx.html