上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 114 下一页
摘要: egrep 可以查询或的数据。 grep 只可以单个查询。 过滤一些不需要的! v 表示过滤不需要的! 登录远程的服务器之前,先把终端放大,这样进入后,才不会出现文字换行问题! 阅读全文
posted @ 2020-03-07 17:24 TBHacker 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 第一步,备份mysql back_mysql_db.sh 第二步,将文件夹scp到服务器 scp_back_to_test.sh 需要安装一下expect tips:默认情况下 10 秒执行命令就会中断,set timeout 120 能够设置执行时长 第三步,配置定时器crontab 每天夜里3点 阅读全文
posted @ 2020-03-03 23:12 TBHacker 阅读(339) 评论(0) 推荐(0) 编辑
摘要: ``` location ^~ /admin.php { allow xxx.xxx.xxx.xxx; // 允许的ip deny all; // 禁止其他 fastcgi_pass unix:/tmp/php-cgi.sock; fastcgi_index index.php; include fastcgi.conf; include pathinfo.conf; } ``` 阅读全文
posted @ 2020-03-03 12:37 TBHacker 阅读(498) 评论(0) 推荐(0) 编辑
摘要: ``` public function banner(){ $redis = Red::create(); $banner_redis_key = 'mask_index_banner'; $banner_data = $redis->get($banner_redis_key); if(!$banner_data) { $mask_banner = M('mask_banner'); $bann 阅读全文
posted @ 2020-03-03 11:06 TBHacker 阅读(198) 评论(0) 推荐(0) 编辑
摘要: ``` /** * https://lbs.qq.com/webservice_v1/guide-gcoder.html * 获取附近的地址 */ public function getNearbyAddress() { // 118.275162,33.963008 (宿迁市) if (!$lng = $_POST['lng']) { // 经度 $this->json->E('缺少参数'); 阅读全文
posted @ 2020-02-29 18:43 TBHacker 阅读(410) 评论(0) 推荐(0) 编辑
摘要: mysql批量添加数据,会出现 。 修改 。 把这个值 修改大一些,就可以了。 阅读全文
posted @ 2020-02-25 10:15 TBHacker 阅读(637) 评论(0) 推荐(0) 编辑
摘要: ``` $('.required:not(.final_price)').each(function() { if (!$(this).val()) { error_count ++; if ($(this).hasClass('sku')) { layer.tips('请填写规格',$(this)); } else if($(this).hasClass('visit_price')) { la 阅读全文
posted @ 2020-02-21 11:21 TBHacker 阅读(1965) 评论(0) 推荐(0) 编辑
摘要: ``` $res = ' Success ok 1 11513955 1'; $xml = simplexml_load_string($res); // 返回对象 $json = json_encode($xml); // encode $array = json_decode($json,TRUE); // decode成数组 ``` ``` array(5) { ["returnstatus 阅读全文
posted @ 2020-02-19 11:14 TBHacker 阅读(211) 评论(0) 推荐(0) 编辑
摘要: ``` mysqldump -uroot -p database_name table_name --where=" telephone !=''" > file.sql ``` 阅读全文
posted @ 2020-02-18 18:57 TBHacker 阅读(933) 评论(0) 推荐(0) 编辑
摘要: 看起来舒服多了!主要是中英文标点符号好区分。 阅读全文
posted @ 2020-02-18 14:04 TBHacker 阅读(4094) 评论(0) 推荐(0) 编辑
摘要: ```/** 屏幕特殊处理 我们用min-width时,小的放上面大的在下面,同理如果是用max-width那么就是大的在上面,小的在下面 **/@media screen and (max-width: 1680px) { //<= 1680px body { background-color: red; }}@media screen and (max-width: 1280px) ... 阅读全文
posted @ 2020-01-31 14:20 TBHacker 阅读(234) 评论(0) 推荐(0) 编辑
摘要: html css 结构很清晰! 阅读全文
posted @ 2020-01-19 17:49 TBHacker 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 把所有的相关的https图片域名都放进去!!! 重新加载小程序,能够及时看到更改效果。 可以通过 来进行调试!!! 阅读全文
posted @ 2020-01-17 16:42 TBHacker 阅读(3054) 评论(0) 推荐(0) 编辑
摘要: 代表{0,} +代表{1,} ?代表{0,1} js中使用, 阅读全文
posted @ 2020-01-17 10:15 TBHacker 阅读(9949) 评论(0) 推荐(1) 编辑
摘要: 设定宽度 不换行 超出隐藏 超出点点点 | 值 | 描述 | | : | : | | clip | 修剪文本。 | | ellipsis | 显示省略符号来代表被修剪的文本。 | | string | 使用给定的字符串来代表被修剪的文本。 | 阅读全文
posted @ 2020-01-16 10:31 TBHacker 阅读(1333) 评论(0) 推荐(0) 编辑
摘要: html css 阅读全文
posted @ 2020-01-15 11:51 TBHacker 阅读(2601) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2018.cnblogs.com/blog/422101/202001/422101-20200115104128508-1731200206.png) ![](https://img2018.cnblogs.com/blog/422101/202001/422101-20200115104136838-518616263.png) 阅读全文
posted @ 2020-01-15 10:42 TBHacker 阅读(953) 评论(0) 推荐(0) 编辑
摘要: 绑定后,就不需要点搜索按钮了 阅读全文
posted @ 2020-01-14 12:01 TBHacker 阅读(1710) 评论(0) 推荐(0) 编辑
摘要: 首页入口 进入搜索页 搜索结果页 后台提供三个接口 搜索页面 搜索页面业务逻辑 搜索页面样式 搜索结果页面 搜索结果页逻辑 搜索结果页样式 阅读全文
posted @ 2020-01-14 11:35 TBHacker 阅读(2182) 评论(0) 推荐(0) 编辑
摘要: 结果: 阅读全文
posted @ 2020-01-14 00:49 TBHacker 阅读(216) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 114 下一页