会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
迷途
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
下一页
2022年12月13日
thinkphp6 json(captcha())为空
摘要: 首先: composer require topthink/think-captcha v3.0.8 把这张图片下载,后缀名png改成zip,解压到: vendor/topthink
阅读全文
posted @ 2022-12-13 14:55 _迷途
阅读(55)
评论(0)
推荐(0)
编辑
Thinkphp6 Class 'think\\facade\\Filesystem' not found
摘要: composer require topthink/think-filesystem
阅读全文
posted @ 2022-12-13 11:02 _迷途
阅读(533)
评论(0)
推荐(0)
编辑
2022年12月7日
ipv6正则表达式
摘要: ^\s*((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d
阅读全文
posted @ 2022-12-07 15:12 _迷途
阅读(95)
评论(0)
推荐(0)
编辑
2022年12月3日
thinkPHP6.0 开启多应用后无法获取控制器和方法名、返回空值
摘要: 首先开启多应用的方法: composer require topthink/think-multi-app 定义路由: <?php use think\facade\Route; Route::any('/user/login', '\\app\\index\\controller\\User@lo
阅读全文
posted @ 2022-12-03 22:20 _迷途
阅读(411)
评论(0)
推荐(0)
编辑
2022年11月24日
PHP轻量级验证器 Particle\Validator
摘要: Particle\Validator是一个小巧优雅的实用的PHP验证类库,提供了一个非常简洁的API。它无需依赖其他组件,提供友好的文档,并且有利于扩展。 composer require particle/validator use Particle\Validator\Validator; $v
阅读全文
posted @ 2022-11-24 16:20 _迷途
阅读(104)
评论(0)
推荐(0)
编辑
2022年11月16日
【PHP】YouTube JSON字幕格式转srt格式并下载
摘要: <?php function formatNum(int $time) { if ($time < 10) { return "0{$time}"; } return $time; } function changeTimeType(int $num): string { $millisecond
阅读全文
posted @ 2022-11-16 19:54 _迷途
阅读(218)
评论(0)
推荐(0)
编辑
2022年11月15日
PHP YouTube字幕转srt格式
摘要: <?php function formatNum(int $time) { if ($time < 10) { return "0{$time}"; } return $time; } function changeTimeType(int $num): string { $millisecond
阅读全文
posted @ 2022-11-15 13:38 _迷途
阅读(48)
评论(0)
推荐(0)
编辑
2022年9月22日
JAVA字符串转Unicode编码
摘要: import java.util.ArrayList; public class Hello { public static void main(String[] args) { String s = "我爱JAVA"; System.out.println(s2unicode(s)); } sta
阅读全文
posted @ 2022-09-22 00:08 _迷途
阅读(446)
评论(1)
推荐(0)
编辑
2022年7月28日
tp5多数据库验证字段唯一
摘要: <?php namespace app\admin\validate; use think\validate; class VideoKeywords extends validate { protected $rule = [ 'keyword' => ['require', 'unique' =
阅读全文
posted @ 2022-07-28 17:23 _迷途
阅读(144)
评论(0)
推荐(0)
编辑
selenium捕获ajax请求内容
摘要: import json import os, sys import platform import time from seleniumwire import webdriver from selenium.webdriver.firefox.firefox_binary import Firefo
阅读全文
posted @ 2022-07-28 17:19 _迷途
阅读(417)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
7
下一页
公告