上一页 1 ··· 3 4 5 6 7 8 9 10 下一页
摘要: //自定义通用curl操作public static function makeCurl($url,$request='',$user_agent='',$headers='',$only_headers=''){ $ch = curl_init();//初始化 curl_setopt($ch,CU 阅读全文
posted @ 2018-02-26 17:48 cyqAkin 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 统计某字符串在文件中出现的总行数cat vsftpd.log|grep "OK DELETE: Client \"127.0.0.1\", \"//ids/20191116"|wc -l 查看当前目录下的文件数量find ./ -type f | wc -l 查找目录下的所有文件中是否含有某个字符串 阅读全文
posted @ 2018-02-06 11:48 cyqAkin 阅读(1035) 评论(0) 推荐(0) 编辑
摘要: delimiter && [函数创建语句.....] [Err] 1418 - This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is en 阅读全文
posted @ 2018-01-11 15:01 cyqAkin 阅读(122) 评论(0) 推荐(0) 编辑
摘要: #update 和 select在同一张表的时候会显示冲突 报错信息: [Err] 1093 - You can't specify target table 'tb_a' for update in FROM clause update tb_a set sex='boy' where uid = 阅读全文
posted @ 2017-12-13 18:26 cyqAkin 阅读(472) 评论(0) 推荐(0) 编辑
摘要: sftp -oPort=8521 用户名@ip 阅读全文
posted @ 2017-12-13 10:04 cyqAkin 阅读(161) 评论(0) 推荐(0) 编辑
摘要: //根据ip获取地址信息composer require "mylukin/ip2city: dev-master" // vendor/mylukin/ip2city/src/IP2City.php 修改为下面这些内容<?php/** * Created by PhpStorm. * User: 阅读全文
posted @ 2017-12-11 14:40 cyqAkin 阅读(522) 评论(0) 推荐(0) 编辑
摘要: select * from user order by rand() limit 100 ##《随机读》读取100条数据 select * from user_info where uid in(select id from user where age<=18) ##《子查询》嵌套子查询作为筛选条 阅读全文
posted @ 2017-10-25 12:50 cyqAkin 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 数据库读写分离,顾名思义↓↓读:从从服务器读取数据写:从主服务器写入数据那么中间二进制同步的时候会出现延迟,导致刚插入进去的数据(在主服务器),查询不到数据(在从服务器)解决方案:部分执行现写现读的数据可以将 `读服务器` 指定到 `写服务器` 阅读全文
posted @ 2017-10-25 12:48 cyqAkin 阅读(374) 评论(0) 推荐(0) 编辑
摘要: 现在有一个需求就是在自己的服务器上传图片到其他服务器上面,过程:客户端上传图片->存放到本地服务器->再转发到第三方服务器; 由于前端Ajax受限制,只能通过服务器做转发了。 在PHP中通过CURL模拟上传文件可以使用(PHP VERSION>=5.6使用的) $stream = new \CURL 阅读全文
posted @ 2017-08-17 14:48 cyqAkin 阅读(1035) 评论(0) 推荐(0) 编辑
摘要: nginx之所以轻,因为默认没有安装各种各样的扩展; nginx安装扩展插件: 下面列出两个可能会用到的插件 一、sub_filter内容过滤器,这个在nginx做http转发的时候会很常用 1.下载插件>git clone git://github.com/yaoweibin/ngx_http_s 阅读全文
posted @ 2017-07-07 16:11 cyqAkin 阅读(2781) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 下一页