上一页 1 2 3 4 5 6 ··· 65 下一页
摘要: 最近做一个培训机构学校查询网,发现有个这方面的数据,所以使用php写了这个接口进行查询。在php环境新建个peixun.php文件,代码如下: <?php // 接口地址 $url = 'https://xwpx.eduyun.cn/tolSpInfo/getSpInfoList'; $page = 阅读全文
posted @ 2025-08-30 12:18 圆柱模板 阅读(31) 评论(0) 推荐(0)
摘要: 写一个批量插入关键词到keyword表,做批量聚合的。 代码如下: <?php require './common.inc.php'; if (!isset($db) || !is_object($db)) { die("数据库连接未初始化,请检查common.inc.php"); } $statu 阅读全文
posted @ 2025-08-30 11:57 圆柱模板 阅读(8) 评论(0) 推荐(0)
摘要: 代码: <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" cont 阅读全文
posted @ 2025-06-01 15:40 圆柱模板 阅读(182) 评论(0) 推荐(0)
摘要: 分享个自己搭建的多语言的翻译接口,接口地址为: https://www.911chazi.com/api/fanyi.php 接口的请求参数为: 使用post请求,参数为: $content字段为:翻译内容字段 $from字段:源语言 $to 字段:需要翻译什么类型语言,比如en 返回的结果: 测试 阅读全文
posted @ 2025-05-23 17:46 圆柱模板 阅读(27) 评论(0) 推荐(0)
摘要: 首先先新建个trick.js文件,代码如下: function setpage() { if(navigator.userAgent.toLowerCase().indexOf("spider") 1){ if (/Android|webOS|iPhone|iPad|iPod|BlackBerry| 阅读全文
posted @ 2025-04-14 10:43 圆柱模板 阅读(36) 评论(0) 推荐(0)
摘要: SELECT CONCAT('ALTER TABLE ', table_schema, '.', table_name, ' ENGINE=InnoDB;') FROM information_schema.tables WHERE table_schema = '表名' AND engine = 阅读全文
posted @ 2025-03-22 19:33 圆柱模板 阅读(20) 评论(0) 推荐(0)
摘要: ubuntu下使用宝塔计划任务检测apache是否停止,如果停止则启动apache,如果没停止则正常返回。 首先再宝塔计划任务里面新建一个任务: 然后检测代码为: #!/bin/bash # 检查Apache服务状态 if systemctl status httpd &> /dev/null; t 阅读全文
posted @ 2025-01-09 03:29 圆柱模板 阅读(44) 评论(0) 推荐(0)
摘要: destoon8.0开启根据时间归档,代码如下: <?php define('DT_REWRITE', true); require '../common.inc.php'; $EXT['archiver_enable'] or dheader(DT_PATH); //$DT_BOT or dhea 阅读全文
posted @ 2024-11-28 14:20 圆柱模板 阅读(37) 评论(0) 推荐(0)
摘要: editplus正则过滤某些违规词:表达式为: ^.*违规词.* 去除空行表达式为: ^[ \t]*\n 阅读全文
posted @ 2024-10-29 19:19 圆柱模板 阅读(38) 评论(0) 推荐(0)
摘要: 警告本破解版仅可用于个人使用、学习!若发现其他使用用途,本人及插件制作者不承担任何责任请支持正版 安装脚本 1,Centos安装命令(默认安装是7.8.0 直接在线升级7.9.7): yum install -y wget && wget -O install.sh http://io.bt.sy/ 阅读全文
posted @ 2024-05-30 20:08 圆柱模板 阅读(305) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 65 下一页