上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 41 下一页
摘要: 安装fastadmin/tp5的管理后台,但我通过composer更新或安装时,总是提示我错误:composer的安装版本过高导致问题 Your requirements could not be resolved to an installable set of packages. Problem 阅读全文
posted @ 2022-07-19 17:01 study_php_java_C++ 阅读(1398) 评论(0) 推荐(0) 编辑
摘要: MySQL5.7以上支持JSON的操作,以及增加了JSON存储类型一般数据库存储JSON类型的数据会用JSON类型或者TEXT类型 注意:用JSON类型的话1)JSON列存储的必须是JSON格式数据,否则会报错。2)JSON数据类型是没有默认值的。 mysql对json后的值进行查询 下面是对rem 阅读全文
posted @ 2022-07-17 14:35 study_php_java_C++ 阅读(827) 评论(0) 推荐(0) 编辑
摘要: $pattern="/<[img|IMG].*?src=[\'|\"]http\:\/\/m\.aa\.com(?:([\w\/]?|[\w\/]+)[\/$])([^\/]+)[\'|\"].*?[\/]?>/"; 匹配如 <p class="MsoNormal"> <img src="http: 阅读全文
posted @ 2022-07-04 10:14 study_php_java_C++ 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 所有关于 openssl_sign(): supplied key param cannot be coerced into a private/public key、Algorithm not allowed 等错误按照文章来一遍,基本就能解决了 GitHub 用多了,第一反应用 puttygen 阅读全文
posted @ 2022-06-27 14:25 study_php_java_C++ 阅读(551) 评论(0) 推荐(0) 编辑
摘要: 今天在Linux配置完环境source之后出现了以下报错:/usr/libexec/grepconf.sh: line 5: grep 针对于在 etc下profile文档配置环境的解决办法 1.解决方法如下:输入export PATH=/usr/bin:/usr/sbin:/bin:/sbin:/ 阅读全文
posted @ 2022-06-26 23:51 study_php_java_C++ 阅读(1707) 评论(0) 推荐(0) 编辑
摘要: 写一个js (function() { 'use strict'; const mWidth = 750; // 减少dom操作 const doc = document.documentElement; function resize(){ // 获取dom文档宽 const deviceWidt 阅读全文
posted @ 2022-06-23 13:37 study_php_java_C++ 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 解决方案(任选一种): 1. div设置 font-size:0; 2. img设置 display:block; 3. div设置 display:flex; 4. img设置 vertical-align: middle; 原因:The white space displayed below i 阅读全文
posted @ 2022-06-22 14:00 study_php_java_C++ 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 查询表的注释 SELECT table_name, table_comment FROM information_schema.tables WHERE table_schema = 'schema_name' AND table_name = 'table_name'; 里面的schema_nam 阅读全文
posted @ 2022-06-21 10:38 study_php_java_C++ 阅读(543) 评论(0) 推荐(0) 编辑
摘要: <!-- 提示:如果你不想用form,你可以换成div等任何一个普通元素 --> <form class="layui-form"> <div class="layui-form-item"> <label class="layui-form-label">复选框</label> <div clas 阅读全文
posted @ 2022-06-21 10:32 study_php_java_C++ 阅读(1118) 评论(0) 推荐(0) 编辑
摘要: 代码: <template> <div> <ul class="ulBox" id="ulBox"> <li class="li" :id="'id'+item" v-for="(item,index) in list" :key="index"> {{item}} </li> </ul> </di 阅读全文
posted @ 2022-06-20 13:01 study_php_java_C++ 阅读(302) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 41 下一页