人五人六博客网
导航
首页
thinkPHP
数据库
Linux
PHP
前端
杂七杂八
每日简报
浏览器书签
搜索
首页
人五人六
列表
2023/4/23
SQL
sqlServer创建数据库并指定mdf,ldf文件所在路径
CREATE DATABASE [dataBaseName] CONTAINMENT = NONE ON PRIMARY ( NAME = N'student_manage', FILENAME = N'D:\dataBaseName.mdf' , ...
718阅读
0评论
2023/4/19
thinkPHP
tp5 数据表字段为逗号分隔的字符串,查询该字段中是否包含某个值
例:数据表cid字段为1,2,34,5,6,7,8,9,10,11 需求:需要查询cid为1的数据 解决:使用find_in_set(查找值,字段名) Db::table('think_user') ->where('find_in_set(1,...
905阅读
0评论
2023/4/14
前端
error: Strings must use singlequote等相关问题
error: Unexpected console statement (no-console) at
451阅读
0评论
2023/4/13
前端
VUE 生成二维码
vue有两种生成二维码的方式,qrcode、vue-qr(可插入icon);
432阅读
0评论
2023/4/7
前端
网站自动多语言翻译
Gitee文档地址:https://gitee.com/mail_osc/translate/blob/master/doc/README.cn.md 快速使用: 在网页最末尾, </html> 之前,加入以下代码,一般在页面的...
758阅读
0评论
2023/3/31
杂七杂八
PHPstorm2022.2.x破解教程
申明:本教程 PhpStorm 破解补丁、激活码均收集于网络,请勿商用,仅供个人学习使用,如有侵权,请联系作者删除。若条件允许,希望大家购买正版 ! 一、官网下载phpStorm2022.2.x并安装 二、下载破解包 点击https://bafybe...
780阅读
0评论
2023/3/27
thinkPHP
tp6+中无法使用 $this-success(),$this->error()解决办法
安装下面的扩展用于支持旧版本的跳转操作 composer require liliuwei/thinkphp-jump 在BaseController中引入 use liliuwei\think\Jump; //添加 /** * 控制器基础类 */ abs...
596阅读
0评论
2023/3/27
thinkPHP
TP6中获取header请求头信息
request()->header()
555阅读
0评论
«
1
...
4
5
6
7
8
9
10
...
22
»