├── README.md ├── LICENSE ├── index1.php ├── maren.php └── anti_qq.php /README.md: -------------------------------------------------------------------------------- 1 | ## 骂人一言 2 | 3 | ### 简单嘴臭,极致享受 4 | > 对网友及其亲人的问候语,大约6万条。~~说脏话,骂人的一言api和调用页面~~ 5 | > 调用页面 https://cf.mb6.top/lib/api/index1.php 6 | 7 | ### 魔改特点 8 | 整合了https://github.com/Oohuo/rubbish 和https://github.com/pokemonchw/Dirty 的记录,并且具有如下特性。做了数据分级,有 9 | - 做了数据分级,普通等级`common`,礼貌用语`qiu`,骂娘等级`yang`(数量最多),不加参数默认是`common`。调用示例 https://cf.mb6.top/lib/api/maren.php?catalog=yang 10 | - api支持返回纯文本,`json`,`js`,不加参数默认返回纯文本。调用示例 https://cf.mb6.top/lib/api/maren.php?format=json 11 | - api支持返回utf8,或者gbk2312,不加参数默认为utf8。调用示例 https://cf.mb6.top/lib/api/maren.php?charset=gbk2312 12 | - 无数据库,无数据存储,只有三个文件 13 | - qq应用和微信应用内拒绝打开,提示跳转到浏览器 14 | 15 | > Github打包下载 `git clone https://github.com/xinjiawei/maren.git` 16 | > php7以上 17 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 xinjiawei 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /index1.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 脏.话生成器-分级版-demo 9 | 10 | 48 | 49 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 |
98 |
99 | 复制成功 100 | 普通战力 101 | 庆哲级战力 102 | 若隆级战力 103 | The browser is not supported. 104 |
105 | 106 |
wow
107 | 109 | 110 |
111 | 135 | 136 | 137 | 138 | 139 | -------------------------------------------------------------------------------- /maren.php: -------------------------------------------------------------------------------- 1 | 2 | $poems 51 | ),JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT); 52 | 53 | }elseif($format=='js'){ 54 | if($charset=='gb2312'){ 55 | header('Content-type: text/javascript;charset=gb2312'); 56 | }else{ 57 | header('Content-type: text/javascript;charset=utf-8'); 58 | } 59 | echo 'function text(){document.write("'.$poems.'");}'; 60 | }else{ 61 | /* 62 | 单纯输出文本 63 | */ 64 | if($charset=='gb2312'){ 65 | header("Content-Type: text/html;charset=gb2312"); 66 | }else{ 67 | header("Content-Type: text/html;charset=utf-8"); 68 | } 69 | exit($poems); 70 | } -------------------------------------------------------------------------------- /anti_qq.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 使用浏览器打开 11 | 12 | 13 | 14 | 15 | 16 | 17 | 41 | 42 | 43 |
44 |

点击右上角 选择自带浏览器打开

45 |

可以继续浏览本站哦~

46 |
47 | 48 |
49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 |
57 |
58 | 点击上方图标or复制本站网址自行打开 59 |
60 | 63 | 64 | 65 | 66 | 点此复制本站网址 67 | 75 | 76 | 77 | '; 78 | exit; 79 | } 80 | ?> --------------------------------------------------------------------------------