上一页 1 ··· 85 86 87 88 89 90 91 92 93 ··· 126 下一页
摘要: /^[0-9]+$/ 阅读全文
posted @ 2019-09-18 14:03 盘思动 阅读(2463) 评论(0) 推荐(0) 编辑
摘要: SELECT `id`,`status`,`short_place`,`merchant_id`,`putin_time` FROM `tf_machine` WHERE `status` = 1 AND `merchant_id` <> 0 AND ( `short_place` like '%蚂蚁极致网络会所%' OR place like '%蚂蚁极致网络会所%' ) ORDER BY sa 阅读全文
posted @ 2019-09-17 14:12 盘思动 阅读(162) 评论(0) 推荐(0) 编辑
摘要: Linux查找含有特定字符串的文件命令为grep。以下为详细的使用方法 grep [OPTIONS] PATTERN [FILE...] #实例:递归查找当前文件夹下所有含有test的文件,并显示行号 grep -rn "test" * #显示匹配pattern1或pattern2的行grep pa 阅读全文
posted @ 2019-09-12 17:39 盘思动 阅读(8361) 评论(2) 推荐(1) 编辑
摘要: 导出所有数据库数据(会导出到命令行当前所在目录下) mysqldump -u root -p --all-databases > alldb.sql 阅读全文
posted @ 2019-09-12 11:27 盘思动 阅读(390) 评论(0) 推荐(0) 编辑
摘要: echo date('Y-m-01', strtotime('-1 month')); echo ""; echo date('Y-m-t', strtotime('-1 month')); echo ""; 阅读全文
posted @ 2019-09-06 18:14 盘思动 阅读(149) 评论(0) 推荐(0) 编辑
摘要: $beginToday = mktime(0,0,0,date('m'),date('d'),date('Y')); $endToday = mktime(0,0,0,date('m'),date('d')+1,date('Y'))-1; //php获取昨日起始时间戳和结束时间戳 $beginYesterday = mktime(0,0,0,date('m'),date('d')-1,date(' 阅读全文
posted @ 2019-09-06 15:02 盘思动 阅读(425) 评论(0) 推荐(0) 编辑
摘要: $str = '中'; if (preg_match('/^[\x{4e00}-\x{9fa5}]+$/u',$str)){ echo '中文'; } else { echo 'no'; } 阅读全文
posted @ 2019-09-04 11:25 盘思动 阅读(394) 评论(0) 推荐(0) 编辑
摘要: <pre>array(3) { [&quot;errno&quot;] =&gt; string(1) &quot;0&quot; [&quot;errmsg&quot;] =&gt; string(2) &quot;ok&quot; [&quot;save_name&quot;] =&gt; st 阅读全文
posted @ 2019-09-03 16:53 盘思动 阅读(2886) 评论(0) 推荐(0) 编辑
摘要: public function zip_download() { $array = array( 'http://local.qki.com/site_upload/erweima/20190826/1566809174292_100063_865373044010119.png', 'http://local.q... 阅读全文
posted @ 2019-08-27 18:18 盘思动 阅读(429) 评论(0) 推荐(0) 编辑
摘要: layer.confirm('请选择是否通过提现?(tips:同意直接打款,驳回不可恢复)', { btn : ['通过-打款','不通过','通过-已打款'], btn1:function(){ ... 阅读全文
posted @ 2019-08-21 15:21 盘思动 阅读(19464) 评论(0) 推荐(1) 编辑
上一页 1 ··· 85 86 87 88 89 90 91 92 93 ··· 126 下一页