首页
关于
Search
1
QQ说说ID获取
2,086 阅读
2
搞笑段子接口
1,604 阅读
3
在线开通主机接口(关闭)
1,571 阅读
4
彩虹代刷免费商品对接(免费名片赞接口)
1,285 阅读
5
葫芦侠签到
1,136 阅读
默认分类
登录
Search
云猫
累计撰写
37
篇文章
累计收到
18
条评论
首页
栏目
默认分类
页面
关于
搜索到
37
篇与
的结果
2025-02-09
图片健康鉴别接口
自建nsfwjs-api图片健康鉴别接口接口:apicheckimg.czzu.cn开发文档API 方法POST /classifyPOST /classify-manyPOST /classify请求示例POST /classify HTTP/1.1 Content-Type: multipart/form-data图片应在 image 字段中提供。响应示例HTTP/1.1 200 OK Content-Type: application/json{ "porn": 0.59248286485672, "sexy": 0.39802199602127075, "hentai": 0.006243097595870495, "neutral": 0.0031403270550072193, "drawing": 0.00011181648733327165 }POST /classify-many请求示例POST /classify-many HTTP/1.1 Content-Type: multipart/form-data图片应在 images 字段中提供。响应示例HTTP/1.1 200 OK Content-Type: application/json[ { "porn": 0.3996206820011139, "neutral": 0.388679563999176, "sexy": 0.19470958411693573, "hentai": 0.015063910745084286, "drawing": 0.001926235854625702 }, { "sexy": 0.8366416692733765, "porn": 0.13645528256893158, "neutral": 0.0222245492041111, "hentai": 0.004213324282318354, "drawing": 0.0004651622730307281 }, { "sexy": 0.8017168045043945, "porn": 0.1770564466714859, "neutral": 0.015829339623451233, "hentai": 0.005097625777125359, "drawing": 0.00029983260901644826 } ]php+html对接示例<?php /* * Author:云猫 * Blog:lwcat.cn * Claude 3.5美化 */ define('UPLOAD_DIR', __DIR__ . '/uploads/'); define('API_URL', 'https://apicheckimg.czzu.cn/classify'); define('MAX_FILE_SIZE', 10 * 1024 * 1024); // 限制图片大小为10MB以内 function handleError($message, $type = 'error') { return [ 'status' => false, 'type' => $type, 'message' => $message ]; } function processImageClassification($file) { if ($file['size'] > MAX_FILE_SIZE) { return handleError('文件大小不能超过5MB'); } $allowedTypes = ['image/jpeg', 'image/png', 'image/gif']; if (!in_array($file['type'], $allowedTypes)) { return handleError('只支持 JPG、PNG 和 GIF 格式的图片'); } if (!is_dir(UPLOAD_DIR)) { if (!mkdir(UPLOAD_DIR, 0755, true)) { return handleError('无法创建上传目录'); } } $extension = pathinfo($file['name'], PATHINFO_EXTENSION); $filename = uniqid('img_') . '.' . $extension; $targetPath = UPLOAD_DIR . $filename; if (!move_uploaded_file($file['tmp_name'], $targetPath)) { return handleError('文件上传失败'); } try { $ch = curl_init(); curl_setopt_array($ch, [ CURLOPT_URL => API_URL, CURLOPT_POST => true, CURLOPT_RETURNTRANSFER => true, CURLOPT_TIMEOUT => 30, CURLOPT_SSL_VERIFYPEER => false, CURLOPT_SSL_VERIFYHOST => false, CURLOPT_POSTFIELDS => ['image' => new CURLFile($targetPath)] ]); $response = curl_exec($ch); if (curl_errno($ch)) { throw new Exception(curl_error($ch)); } $result = json_decode($response, true); if (!$result) { throw new Exception('API返回数据解析失败'); } $sexyScore = isset($result['sexy']) ? floatval($result['sexy']) : 0; $status = $sexyScore <= 0.1; return [ 'status' => true, 'type' => $status ? 'success' : 'warning', 'message' => $status ? '图片内容健康' : '图片内容不适宜', 'details' => $result, 'score' => $sexyScore ]; } catch (Exception $e) { return handleError('处理失败:' . $e->getMessage()); } finally { curl_close($ch); @unlink($targetPath); } } $result = null; if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_FILES['image'])) { $result = processImageClassification($_FILES['image']); } ?> <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>图片内容检测系统</title> <link rel="stylesheet" href="https://cdn.lwcat.cn/layui/css/layui.css"> <style> .container { max-width: 800px; margin: 40px auto; padding: 20px; } .upload-area { border: 2px dashed #e2e2e2; padding: 20px; text-align: center; margin: 20px 0; border-radius: 4px; } .upload-area:hover { border-color: #009688; } .result-card { margin-top: 20px; padding: 20px; border-radius: 4px; display: none; } .details-box { background: #f8f8f8; padding: 15px; border-radius: 4px; margin-top: 10px; } .score-label { font-size: 24px; margin: 10px 0; } #uploadForm { margin-bottom: 20px; } .preview-image { max-width: 300px; max-height: 300px; margin: 10px auto; display: none; } </style> </head> <body> <div class="layui-container container"> <div class="layui-card"> <div class="layui-card-header"> <h2>图片内容检测系统</h2> </div> <div class="layui-card-body"> <form id="uploadForm" action="" method="post" enctype="multipart/form-data"> <div class="upload-area" id="dropZone"> <input type="hidden" name="MAX_FILE_SIZE" value="<?= MAX_FILE_SIZE ?>"> <input type="file" name="image" id="imageInput" accept="image/*" style="display: none;"> <img id="preview" class="preview-image"> <div class="layui-text"> <p>点击或拖拽图片至此处上传</p> <p class="layui-text-muted">支持 JPG、PNG、GIF 格式,最大 5MB</p> </div> </div> <button class="layui-btn layui-btn-fluid" type="submit">开始检测</button> </form> <?php if ($result): ?> <div class="result-card" style="display: block;"> <div class="layui-bg-<?= $result['type'] ?>" style="padding: 15px;"> <h3><?= htmlspecialchars($result['message']) ?></h3> <?php if ($result['status'] && isset($result['score'])): ?> <div class="score-label"> 评分:<?= number_format($result['score'] * 100, 1) ?>% </div> <?php endif; ?> </div> <?php if ($result['status'] && isset($result['details'])): ?> <div class="details-box"> <pre><?= htmlspecialchars(json_encode($result['details'], JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE)) ?></pre> </div> <?php endif; ?> </div> <?php endif; ?> </div> </div> </div> <script src="https://cdn.lwcat.cn/layui/layui.js"></script> <script> layui.use(['upload', 'layer'], function(){ const dropZone = document.getElementById('dropZone'); const imageInput = document.getElementById('imageInput'); const preview = document.getElementById('preview'); dropZone.onclick = () => imageInput.click(); dropZone.ondragover = (e) => { e.preventDefault(); dropZone.classList.add('layui-border-green'); }; dropZone.ondragleave = () => { dropZone.classList.remove('layui-border-green'); }; dropZone.ondrop = (e) => { e.preventDefault(); dropZone.classList.remove('layui-border-green'); if (e.dataTransfer.files.length) { imageInput.files = e.dataTransfer.files; updatePreview(); } }; imageInput.onchange = updatePreview; function updatePreview() { const file = imageInput.files[0]; if (file) { const reader = new FileReader(); reader.onload = (e) => { preview.src = e.target.result; preview.style.display = 'block'; }; reader.readAsDataURL(file); } } }); </script> </body> </html>
2025年02月09日
15 阅读
0 评论
2 点赞
2025-01-24
md5加密(自定义加密次数)
支持get和posthttps://api.lwcat.cn/api/md5.php?text=加密内容×=次数如:https://api.lwcat.cn/api/md5.php?text=123456×=2返回json:{ "code": 200, "message": "success", "data": { "original": "xiao520", "encrypted": "0977622a0210529ff046ec1998ee7d48", "times": 2 } }
2025年01月24日
15 阅读
0 评论
1 点赞
2024-09-26
今日头条热搜
https://lwcat.cn/today.php 每小时更新一次返回json对接示例<?php // BY:云猫 // QQ3522934828 $url = 'https://lwcat.cn/today.php'; $response = file_get_contents($url); // 将JSON格式数据转换为PHP数组 $data = json_decode($response, true); // 输出前10条内容 for ($i = 0; $i < min(10, count($data)); $i++) { echo $data[$i]['title'] . "\n"; echo $data[$i]['url'] . "\n\n"; } echo "接口https://lwcat.cn/weibo.php提供,每小时更新"; ?>
2024年09月26日
24 阅读
0 评论
1 点赞
2024-09-24
微博热搜api
https://lwcat.cn/weibo.php 每小时更新一次返回json对接示例<?php // BY:云猫 // QQ3522934828 $url = 'https://lwcat.cn/weibo.php'; $response = file_get_contents($url); // 将JSON格式数据转换为PHP数组 $data = json_decode($response, true); // 输出前10条内容 for ($i = 0; $i < min(10, count($data)); $i++) { echo $data[$i]['title'] . "\n"; echo $data[$i]['url'] . "\n\n"; } echo "接口https://lwcat.cn/weibo.php提供,每小时更新"; ?>
2024年09月24日
28 阅读
0 评论
0 点赞
2024-09-07
获取qq昵称接口
https://lwcat.cn/qqname.php?qq=3522934828
2024年09月07日
48 阅读
0 评论
1 点赞
2024-08-16
扒站接口
https://www.lwcat.cn/fz/web.php?url=http://example.com/返回json
2024年08月16日
99 阅读
0 评论
0 点赞
2024-08-06
葫芦侠图床接口
接口地址https://lwcat.cn/hlximage.php上传file返回json,url为图片链接演示示例:https://lwcat.cn/list/%E8%91%AB%E8%8A%A6%E4%BE%A0%E5%9B%BE%E7%89%87%E4%B8%8A%E4%BC%A0%E6%BC%94%E7%A4%BA/index.html可以右键查看源代码对接示例 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>图片上传示例</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://www.layuicdn.com/layui/css/layui.css" media="all"> <style> .layui-upload { text-align: center; margin-top: 50px; } #previewImage { max-width: 100%; height: auto; } </style> <script src="https://cdn.lwcat.cn/jquery/jquery.js"></script> <script src="https://cdn.lwcat.cn/layui/layui.js"></script> </head> <body> <div class="layui-upload"> <button type="button" class="layui-btn" id="uploadImage">上传图片</button> <div class="layui-upload-list"> <p id="uploadStatus"></p> </div> </div> <script> layui.use('upload', function(){ var upload = layui.upload; var layer = layui.layer; var uploadInst = upload.render({ elem: '#uploadImage' ,url: 'https://lwcat.cn/hlximage.php' ,field: 'file' ,accept: 'images' ,exts: 'jpg|jpeg|png' ,before: function(obj){ layer.load(); } ,done: function(res){ layer.closeAll('loading'); if(res.url){ layer.msg('上传成功!', {icon: 1}); $('#uploadStatus').html('上传成功,图片链接:<a href="'+ res.url +'" target="_blank">'+ res.url +'</a>'); } else { layer.msg('上传失败:'+ res.error, {icon: 2}); $('#uploadStatus').html('上传失败:'+ res.error); } } ,error: function(){ layer.closeAll('loading'); layer.msg('上传失败,请重试!', {icon: 2}); $('#uploadStatus').html('上传失败,请重试!'); } }); }); </script> </body> </html>
2024年08月06日
92 阅读
0 评论
1 点赞
2024-07-26
此内容被密码保护
加密文章,请前往内页查看详情
2024年07月26日
34 阅读
0 评论
0 点赞
2024-07-25
免费主机接口
host.czzu.cn
2024年07月25日
101 阅读
0 评论
2 点赞
2024-07-25
finalshell专业版/高级版激活码获取接口
支持最新版本https://api.lwcat.cn/api/finalshell.php?code=设备码设备码可以在离线激活那里查看
2024年07月25日
49 阅读
0 评论
1 点赞
2024-06-30
日签图片
https://lwcat.cn/day/
2024年06月30日
115 阅读
0 评论
0 点赞
2024-06-30
获取当前农历日期和天干地支
返回当前新历日期,农历日期,天干地支以及名人一言json:https://api.lwcat.cn/api/day/
2024年06月30日
74 阅读
0 评论
0 点赞
2024-06-21
网站ssl证书到期检测
https://lwcat.cn/ssl.php?domain=lwcat.cn
2024年06月21日
75 阅读
0 评论
0 点赞
2024-05-20
随机一言接口(更新)
词库更新返回texthttps://api.lwcat.cn/api/sentence.php返回jsonhttps://api.lwcat.cn/api/sentence.php?format=json支持跨域请求
2024年05月20日
154 阅读
0 评论
0 点赞
2024-01-17
之前域名拿去备案了,关了一段时间
恢复了
2024年01月17日
539 阅读
0 评论
0 点赞
2023-07-17
QQ快捷登录接口
具体使用文档查看http://login.lwcat.cn/
2023年07月17日
726 阅读
0 评论
0 点赞
2023-06-24
免费主机(无需注册)
http://ep.lwcat.cn/内测完毕,已对外开放--7.14
2023年06月24日
792 阅读
0 评论
0 点赞
2023-06-22
高质量线报接口
http://api.lwcat.cn/api/xianbao.php返回json,无广告
2023年06月22日
1,027 阅读
0 评论
0 点赞
2023-06-17
蓝奏云直链解析(动态和官方临时)
官方直链http://wapi.lwcat.cn:2333/lzjx/api.php?url=https://ximami.lanzoup.com/i2hbN0zaaxgf&password=123456没有密码就别填,直链有效期是一个小时,返回json动态直链(速度可能有点慢)http://wapi.lwcat.cn:2333/lzjx/realtime.php?url=https://ximami.lanzoup.com/i2hbN0zaaxgf&password=123456没有密码就别填,直链有效期是。。。永久
2023年06月17日
430 阅读
0 评论
0 点赞
2023-01-22
ping接口
服务器地址北京http://api.lwcat.cn/api/ping.php?type=bj&url=lwcat.cn
2023年01月22日
615 阅读
0 评论
0 点赞
2023-01-22
动漫报时图片接口
返回二次元动漫图片时间http://api.lwcat.cn/api/time.php
2023年01月22日
638 阅读
0 评论
0 点赞
2022-09-11
仿站扒站接口(服务器流量不够了,关闭)
http://free.lwcat.cn/fz/api.php?type=get&url=http://api.lwcat.cn返回json为了节约资源,部分网站不支持扒取
2022年09月11日
1,030 阅读
0 评论
0 点赞
2022-07-13
在线开通主机接口(关闭)
http://api.lwcat.cn/api/eea.php?&free=1&username=账号&password=密码&ip=154.222.29.97当前可用ip156.241.138.210(推荐,已稳定三个月) 登录163.197.180.206 登录我还活着,请放心,每月一更新接口更新日期:2022.9.10有免费节点欢迎赞助~谢谢啦更新日期:2022.7.28(自行替换ip可开通不同节点的主机)(正常不代表一定能开通)因为本人学业有点忙,检查,如果一直开通失败请联系qq3522934828维护
2022年07月13日
1,571 阅读
7 评论
0 点赞
2022-06-06
翻译接口
json返回:http://api.lwcat.cn/api/translate.php?text=你好
2022年06月06日
650 阅读
0 评论
0 点赞
2022-06-06
堆糖图片(多种输出方式)
json格式:http://api.lwcat.cn/api/duitang.php?msg=鬼刀text格式:http://api.lwcat.cn/api/duitang.php?type=text&msg=鬼刀直接跳转图片:http://api.lwcat.cn/api/duitang.php?type=image&msg=鬼刀
2022年06月06日
606 阅读
0 评论
0 点赞
2022-06-06
许久不见~这是一条小小的通知
最近因为学业繁忙,加上对这些已经不太感兴趣了,所以就没咋维护了主机域名接口关闭音乐接口关闭其他正常~新增堆糖接口(网上找的源码,需要可留言)翻译接口
2022年06月06日
1,064 阅读
0 评论
0 点赞
2022-02-05
随机动漫名句
直接返回文本http://api.lwcat.cn/api/dm.php
2022年02月05日
970 阅读
0 评论
0 点赞
2022-01-31
官方群617723853
官方群617723853
2022年01月31日
891 阅读
0 评论
1 点赞
2022-01-25
手机归属查询
返回jsonhttp://api.lwcat.cn/api/sjgs.php?phone=手机号返回texthttp://api.lwcat.cn/api/sjgs.php?type=text&phone=手机号
2022年01月25日
1,123 阅读
0 评论
0 点赞
2022-01-25
彩虹代刷免费商品对接(免费名片赞接口)
https://api.lwcat.cn/api/dsz.php?url=对接代刷&tid=视频id&qq=下载账号目前不支持小储系统、有验证的商品,多个选框的商品
2022年01月25日
1,285 阅读
3 评论
0 点赞
2022-01-25
随机一言
流氓语录http://api.lwcat.cn/api/sw.php?lx=sw舔狗语录http://api.lwcat.cn/api/sw.php?lx=tg爱情公寓语录http://api.lwcat.cn/api/sw.php?lx=aqgy中英语录http://api.lwcat.cn/api/sw.php?lx=zy爱情语录http://api.lwcat.cn/api/sw.php?lx=zyl一言好句http://api.lwcat.cn/api/sw.php?lx=yy社会语录http://api.lwcat.cn/api/sw.php?lx=jxyl
2022年01月25日
1,073 阅读
0 评论
0 点赞
2022-01-25
性感内yi随机图片
直接返回图片http://api.lwcat.cn/api/mjx.php
2022年01月25日
961 阅读
0 评论
0 点赞
2022-01-25
QQ付费音乐点歌(没钱充值)
http://api.lwcat.cn/api/yy.php搜索音乐http://api.lwcat.cn/api/yy.php?msg=音乐名选择音乐http://api.lwcat.cn/api/yy.php?msg=音乐名&n=序号
2022年01月25日
1,054 阅读
0 评论
0 点赞
2022-01-25
葫芦侠签到
http://api.lwcat.cn/api/hlxqd.php?phone=手机号&password=密码
2022年01月25日
1,136 阅读
0 评论
0 点赞
2022-01-25
搞笑段子接口
直接返回文本http://api.lwcat.cn/api/duanzi.php
2022年01月25日
1,604 阅读
1 评论
0 点赞
2022-01-25
QQ说说ID获取
返回jsonhttp://api.lwcat.cn/api/shuoapi.php?uin=3522934828
2022年01月25日
2,086 阅读
2 评论
0 点赞
2022-01-22
欢迎使用 Typecho
如果您看到这篇文章,表示您的 blog 已经安装成功.
2022年01月22日
994 阅读
2 评论
0 点赞