SELECT REPLACE('aaa.mysql.com','a','w'); // wordpress 文章内容关键词替换 UPDATE wp_posts SET post_content = REPLACE(post_content, 'https://abc.com', 'https://www.abc.com...
防盗链破解
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content=...
Fiddler过滤css、js、图片等静态文件
直接在Filters选项卡勾选保存即可 REGEX:(?insx)/[^?/].(css|ico|jpg|png|gif|bmp|wav|js)(?.)?$
Nginx PHP 服务环境配置
Nginx与PHP交互过程 + Nginx与PHP通信的两种方式 step1:用户将http请求发送给nginx服务器(用户和nginx服务器进行三次握手进行TCP连接) step2:nginx会根据用户访问的URI和后缀对请求进行判断 step3:通过第...
MySql事务级别,不可重复读和幻读的区别
原文:https://blog.csdn.net/qq_35433593/article/details/86094028 使用过关系型数据库的,应该都事务的概念有所了解,知道事务有 ACID 四个基本属性:原子性(Atomicity)、一致性(Consistency)、隔离性...
redis 持久化某一个key_Redis开发规范解析(三)一个Redis最好存多少key
原链接 https://blog.csdn.net/weixin_32349561/article/details/113580065 从官方的回答可以看到,Redis虽然可以承担2^32个(大约40亿个)键值对,但是它建议你最佳实践是存放2.5亿个键值对,没有给出具体的原因。
使用正则表达式进行中文排版
中文排版是字处理的一个基本功能,目前有些文字排版软件,例如“排版助手”等等,可以完成一些通用的中文排版功能,但是对于一些复杂的个性化排版功能就无法实现,实际上,我们通过在一些常用的支持正则的代码编辑...
php elasticsearch 教程
原文链接:https://www.tizi365.com/archives/951.html PDF https://www.jone.xyz/datafile/php elasticsearch 教程.pdf 一、php elasticsearch 教程 php elasticsearch教程,主要从php角度讲解elasticsear...
VMware 虚拟机 CentOS 7下安装部署 ElasticSearch
腾讯云Elasticsearch 和 analysis-ik 的安装使用教程 https://cloud.tencent.com/developer/labs/lab/10433 部署java环境 https://www.shuzhiduo.com/A/lk5aMBAq51/ 安装ElasticSearch https://blog.csdn.n...
VUE Ant table报错 Warning: [antdv: Each record in table should have a unique `key` prop,or set `rowKey` to an unique primary key.]
相关参考文章:https://www.cnblogs.com/blueswithchenxing/p/14313605.html VUE Ant table报错 Warning: [antdv: Each record in table should have a unique `key` prop,or set `rowKey` to an unique prima...