摘要: <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>测试</title> <?php $chk = array('ch1','ch3','ch5'); //后台获取checkbox选中id的数组 $slt 阅读全文
posted @ 2017-10-27 10:54 jackduan1 阅读(4794) 评论(0) 推荐(0) 编辑
摘要: Nginx日志按日期切割详解(按天切割) http://www.jb51.net/article/107422.htm Nginx日志按日期切割详解(按天切割) http://www.jb51.net/article/107422.htm 由于nginx的日志本身只是支持按照server_name或 阅读全文
posted @ 2017-10-26 15:47 jackduan1 阅读(532) 评论(0) 推荐(0) 编辑
摘要: 同样ip从多到少排序统计 cat logs/test.com_access_log.20171024 |awk '{print $1}'| sort | uniq -c |sort -nr |less 总共访问ip统计 cat logs/test.com_access_log.20171024 |a 阅读全文
posted @ 2017-10-24 11:28 jackduan1 阅读(1169) 评论(0) 推荐(0) 编辑
摘要: //验证一维数组或多维数组中有某个值function deep_in_array($value, $array) { foreach($array as $item) { if(!is_array($item)) { if ($item == $value) { return true; } els 阅读全文
posted @ 2017-09-08 11:27 jackduan1 阅读(538) 评论(0) 推荐(0) 编辑
摘要: 第一种 $content = //html代码; $data = '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns="http: 阅读全文
posted @ 2017-09-04 11:08 jackduan1 阅读(352) 评论(0) 推荐(0) 编辑
摘要: // 判断没有登录时,跳转到登录页面 protected function check_login(){// header("location:".getenv("HTTP_REFERER")); $session_user=session('user'); if(empty($session_us 阅读全文
posted @ 2017-08-29 17:50 jackduan1 阅读(1166) 评论(0) 推荐(0) 编辑
摘要: https://git.oschina.net/cik/pinyin_php 阅读全文
posted @ 2017-08-24 10:15 jackduan1 阅读(4357) 评论(0) 推荐(0) 编辑
摘要: PHP 生成 PDF PHP 生成 PDF 1今天使用的是​TCPDF。 http://www.51ask.org/article/232 TCPDF具有以下特性: 1、支持页面页脚;2、支持HTML标签代码;3、支持jpg/png/gif/svg图形图像;4、支持表格;5、支持中文字符;(有些PD 阅读全文
posted @ 2017-08-23 14:34 jackduan1 阅读(644) 评论(0) 推荐(0) 编辑
摘要: 当你在做一个抓取程序的时候,php空白了好长一段时间然后报出现如下这个错误提示:Fatal error: Maximum execution time of 30 seconds exceeded in ......很简单,意思是说脚本执行时间超过了30秒的上限。这个错误以前经常碰到,一般都是直接在 阅读全文
posted @ 2017-08-22 14:00 jackduan1 阅读(2613) 评论(0) 推荐(0) 编辑
摘要: ### 1在防火墙封 cat /etc/sysconfig/iptables ## # Firewall configuration written by system-config-firewall 2 # Manual customization of this file is not reco 阅读全文
posted @ 2017-08-18 16:39 jackduan1 阅读(1118) 评论(0) 推荐(0) 编辑