OrangeSyc 发表于 2021-5-2 13:06

兽音译者(兽语翻译)SDK

人*兽*交*互?五一假期真的太闲了。群里一片欢乐的海洋。

手撸 JavaScript 、GoLang 、Python 、PHP 多端实现,可以自定义字典, 可以相互兼容。

具体按照需要自行改造,欢迎 star !欢迎 star !欢迎 star !重要的事情说三遍 :)

https://github.com/SycAlright/beast_sdk

https://z3.ax1x.com/2021/05/01/gZiVw8.png
https://z3.ax1x.com/2021/05/01/gZiFyt.png

https://static.52pojie.cn/static/image/hrline/1.gif

# 兽音译者(兽语翻译)SDK


**采用 `JavaScript` 、 `GoLang` 、 `Python` 、 `PHP` 多端实现。**

可以自定义字符, 可以相互兼容,具体按照需要自行改造。

## 使用

### 翻译到兽语

#### JavaScript
```javascript
var str = encode("你好");
console.log(str);

// 呜嗷嗷嗷啊嗷嗷~啊呜~啊~呜呜嗷
```
#### PHP
```php
<?php
include('./beast.php');

$enStr = encode("你好");
echo "兽语:" . $enStr;

// 呜嗷嗷嗷啊嗷嗷~啊呜~啊~呜呜嗷
```
#### GoLang
```go
enStr := encode("你好")
fmt.Print(enStr)

// 呜嗷嗷嗷啊嗷嗷~啊呜~啊~呜呜嗷
```
#### Python
```python
print(encode("你好"))

// 呜嗷嗷嗷啊嗷嗷~啊呜~啊~呜呜嗷
```


### 翻译到人话

#### JavaScript
```javascript
var str = decode("呜嗷嗷嗷啊嗷嗷~啊呜~啊~呜呜嗷");
console.log(str);

// 你好
```
#### PHP
```php
<?php
include('./beast.php');

$deStr = decode("呜嗷嗷嗷啊嗷嗷~啊呜~啊~呜呜嗷");
echo '<br>音译:' . $deStr;

// 你好
```
#### GoLang
```go
deStr := decode("呜嗷嗷嗷啊嗷嗷~啊呜~啊~呜呜嗷")
fmt.Print(deStr)

// 你好
```
#### Python
```python
print(decode("呜嗷嗷嗷啊嗷嗷~啊呜~啊~呜呜嗷"))

// 你好
```

## 自定义字典:
### 修改beast数组即可~注意不能重复哦!

shadowchen2001 发表于 2021-5-2 14:46

什么鬼...
页: [1]
查看完整版本: 兽音译者(兽语翻译)SDK